- 1
Fill in the blanks to declare a variable, add 5 to it and print its value.
>>> x = 4 >>> x + = 5 >>> print
7 Antworten
+ 1
x = 4
x += 5
print(x)
0
thnx akash pal
0
it is not working
0
X=4
X=x+5
Print(x)
0
0
x = 4
x += 5
print(x)
its not working
0
x = 4
x += 5
print(x)
its not working