+ 1
What is the output of this code?
>>> x = 5 >>> y = x + 3 >>> y = int(str(y) + "2") >>> print(y)
2 Answers
+ 13
The output will be 82.
You converted variable y to string by using str(y)
+ 3
82
>>> x = 5 >>> y = x + 3 >>> y = int(str(y) + "2") >>> print(y)