Pleaseeeee.......... help me right away | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Pleaseeeee.......... help me right away

X=4 X+=5 Print(?) ?=(help me) FROM PYTHON Q&A

10th Jun 2018, 4:13 AM
CR7
CR7 - avatar
3 Answers
+ 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.
10th Jun 2018, 4:47 AM
Harsh
Harsh - avatar
+ 6
That's just doing 4+5 To print it you need to do this: print(X) Your print needs to be lowercase.
10th Jun 2018, 5:37 AM
Ahri Fox
Ahri Fox - avatar
+ 4
9 this similar to x=4; sum=x+5; print (sum);
10th Jun 2018, 4:46 AM
Sudarshan Rai
Sudarshan Rai - avatar