0
need output please
x = 5 y = x + 3 y = int(str(y) + "2") print(y)
4 Answers
+ 4
edit:
Add proper identation to code just and run..!
edit:
Sserugo Vincent Uganda
not get? see this
x = 5
y = x + 3 #no space st first.
y = int(str(y) + "2")
print(y)
#space before means making a block of code.
+ 2
x = '5+2'
print(eval(x))
print(eval('2+5'))
print(3+4)
+ 2
Theoutput will be 82