0
whats this outopot this cod????
>>>x=5 >>>y=x+â3â >>>y=int(stry(y)+â2â >>>print âyâ
6 Answers
+ 2
>>>x=5
>>>y=x+'3'
>>>y=int(str(y)+'2')
>>>print(y)
Output : 82
0
0
0
i need ans for this code
please help me
0
What is the output of this code?
x = 5
y = x + 3
y = int(str(y) + "2")
print(y)
- 1
error
the mistake is in the second line you can't add integer to strings
- 2
Correction of your code:
>>>x=5
>>>y=x+'3'
>>>y=int(str(y)+'2')
>>>print(y)
Output : 532
Why not using the interpreter!! So you learn by yourself..