0
Fill in the blanks
Fill in the blanks to declare a variable, and 5 to it and print its value: x = 4 x __ = 5 # one empty place print __ # three empty place
2 ответов
+ 2
it's better to post it in quiz
answer may be
x=4
x+=5
print(x)
+ 2
I think it should be:
x=4
x+=5
print(x)
anyway this should be in the quiz factory,not here