Post

@PythonPr Answer: 20
Solution: x is the integer 10.
y is the string "10".
However, int(y) converts the string to int.
Hence, int(y) gives the value 10.
So, x + int(y) simplifies to
10 + 10
that gives 20.
English

@PythonPr 20. int(y) converts the string "10" to an integer, and 10 + 10 is, well, 20.
English



























