str with int statement in Python

Question:
What’s the value of x after this code snippet executes?

x = "1234" + 5
  1. Trick question - this fails with a TypeError
  2. '12345'
  3. '1239'
  4. 12345
Answer:
A - is the correct answer