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

11th Jul 2017, 1:39 AM
Ali
3 Answers
+ 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.
11th Jul 2017, 1:52 AM
Ipang
+ 4
x = 4 x += 5 print(x)
11th Jul 2017, 1:52 AM
Complex
Complex - avatar
+ 3
Thank you very much
11th Jul 2017, 1:52 AM
Ali