0

need output please

x = 5 y = x + 3 y = int(str(y) + "2") print(y)

1st Apr 2022, 12:57 PM
Sserugo Vincent Uganda
Sserugo Vincent Uganda - avatar
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.
1st Apr 2022, 12:59 PM
Jayakrishna 🇼🇳
+ 2
x = '5+2' print(eval(x)) print(eval('2+5')) print(3+4)
2nd Apr 2022, 12:55 AM
CodeStory
CodeStory - avatar
+ 2
Theoutput will be 82
3rd Apr 2022, 8:07 AM
Yusra
Yusra - avatar