0
Test out
Fill in the blanks to declare a variable, add 5 to it and print its value. x = 4 x ? = 5 print ??? ı cant solve it
2 Answers
+ 3
i am a new beginner too but it could be like that as i understood:
x = 4
x += 5
print(x)
output should 9 but i am not sure are you trying this
0
x=4
x+=5
print(x)