- 5
x=5 y=x+3 y=int(str(y)+"2")
Please help me output
8 Answers
+ 6
You can run it on code playground
this will give you output
+ 4
x=5
y=8
y=int("8"+"2")=int("82")=82
But since you are not calling any output method it won't output anything
+ 3
Yup Angelo Landi is right
Use 'print(y)' to get output in code
+ 2
x = 5
y = x + 3
y = int(str(y) + "2")
print(y)
the output is = 82
0
Right. Thank you my all friends



