0
IN-PLACE OPERATORS
What is the output of this code? x=5 y = x + 3 y = int(str(y) + “2” print(y)
2 Antworten
+ 2
thanks
+ 1
Error because missed parenthesis in y = int(str(y)+"2
If not the output is 82
What is the output of this code? x=5 y = x + 3 y = int(str(y) + “2” print(y)