+ 2
Pleaseeeee.......... help me right away
X=4 X+=5 Print(?) ?=(help me) FROM PYTHON Q&A
3 Antworten
+ 9
X will be equal to 9.
Remember, X += 5 is the same as X = X+5.
Therefore, X += 5 => 4 + 5 => 9
By the way, replace the question mark with X.
+ 6
That's just doing 4+5
To print it you need to do this:
print(X)
Your print needs to be lowercase.
+ 4
9
this similar to
x=4;
sum=x+5;
print (sum);