Fill in the blanks to declare a variable, add 5 to it and print its value. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Fill in the blanks to declare a variable, add 5 to it and print its value.

>>> x = 4 >>> x + = 5 >>> print

10th Jun 2018, 7:36 PM
SUSHIL
SUSHIL - avatar
7 Answers
+ 1
x = 4 x += 5 print(x)
10th Jun 2018, 7:39 PM
Akash Pal
Akash Pal - avatar
0
thnx akash pal
10th Jun 2018, 7:41 PM
SUSHIL
SUSHIL - avatar
0
it is not working
24th Apr 2020, 11:24 AM
kavi kumar
0
X=4 X=x+5 Print(x)
5th May 2020, 7:00 AM
Priyanka Ritund
Priyanka Ritund - avatar
0
25th May 2020, 8:01 AM
R.Sowmiya Sowmi
R.Sowmiya Sowmi - avatar
0
x = 4 x += 5 print(x) its not working
16th Feb 2021, 5:11 PM
Amit Kumar
0
x = 4 x += 5 print(x) its not working
28th Feb 2021, 8:45 PM
Aniket Mane