0
Fill the blanks to declare a variable add 5 to it and print its value (what is wrong here )
>>> x =4 >>>x +=5 >>>print (9)
3 Respuestas
+ 1
Many mistakes:
1. indeltation error on line 1 due to use of extra space before "x = 4"
2. You have used "FULLWIDTH LEFT/RIGHT PARENTHESIS --> ()" instead of normal parentheses --> ().
3. If you are printing value from a variable, than why you have printed 9 directly on line 3.
The correct code would be:
x = 4
x += 5
print(x)
0
Here is a simple code bro
https://code.sololearn.com/c1MqiN332T3Y/?ref=app