0
can anyone help me with this code, i dont know what im doing wrong
X= 4 X + = 5 Print? The part at print is where im having trouble
3 ответов
+ 6
Print function is used to display something on the screen. e.g. :
Print("Hello world")
or like in your code:
x=4
x+=5
Print(x)
The Print function will display the value of x.
+ 4
x = 4
x += 5
print(x)
+ 3
Thank you very much