- 2
A very simple question but I'm stuck
Fill in the blanks to declare a variable,add 5 to it and print its value: x = 4 x_=5 print __ so,what's the answer?
1 Antwort
0
x = 4
x+=5
print(x)
If it works can you please up vote it
Fill in the blanks to declare a variable,add 5 to it and print its value: x = 4 x_=5 print __ so,what's the answer?