0

whats this outopot this cod????

>>>x=5 >>>y=x+’3’ >>>y=int(stry(y)+’2’ >>>print ’y’

5th Aug 2016, 6:54 AM
msaid
6 RĂ©ponses
+ 2
>>>x=5 >>>y=x+'3' >>>y=int(str(y)+'2') >>>print(y) Output : 82
6th Aug 2018, 1:11 AM
Rinae Tshivhinda
Rinae  Tshivhinda - avatar
0
0
26th Feb 2019, 4:10 PM
Bowen Sweeney
Bowen Sweeney - avatar
0
i need ans for this code please help me
6th May 2020, 6:54 AM
KOUSHIKA K S
KOUSHIKA K S - avatar
0
What is the output of this code? x = 5 y = x + 3 y = int(str(y) + "2") print(y)
17th Dec 2020, 9:44 AM
Puteri Adriana Alissa Bt Azam Syazali
- 1
error the mistake is in the second line you can't add integer to strings
5th Aug 2016, 1:35 PM
Slimani Mohammed
Slimani Mohammed - avatar
- 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..
5th Aug 2016, 8:06 AM
Protik Chanda
Protik Chanda - avatar