- 1
what is the answer
What is the output of this code? >>> x = 5 >>> y = x + 3 >>> y = int(str(y) + "2") >>> print(y)
2 Answers
+ 11
x=5
y=8
y=int("8"+"2") => 82
What is the output of this code? >>> x = 5 >>> y = x + 3 >>> y = int(str(y) + "2") >>> print(y)