0
please help
Fill in the blanks to declare a variable, add 5 to it and print its value. >>> x = 4 >>> x + = 5 >>> print
1 Answer
+ 3
Lets take a variable x
set the value of x
x=7
now add 5 to it
x+=5
now printing x
print(x)
12
Fill in the blanks to declare a variable, add 5 to it and print its value. >>> x = 4 >>> x + = 5 >>> print