+ 1
Fill in the blanks to declare a variable, add 5 to it and print it.
x = 4 x + = 5 print found it incorrect printing (x), what might be the problem? https://www.sololearn.com/discuss/2694561/?ref=app
8 ответов
+ 7
Remove the space between '=' and '+'
x = 4
x += 5
print(x)
+ 5
Looks like your variable x in upper case.
Check it again
https://ibb.co/PFsFGxQ
+ 2
It went through, thanks.
Wanted to be centered
+ 1
I wish i could send a screenshot
+ 1
It's lower case
0
It's incorrect
0
Ok