0
Fill the blanks spaces and declare a variable ,add 5 and print its value
>>>x =4 >>>x _=5 >>>print _
1 Answer
+ 1
hi,
declare a variable (here with name x and value 4) :
>>> x = 4
add 5 to it value (easy, use + sign in the blank) :
>>> x _= 5
and print it (call the variable x (easy too, use the name of this variable) as a argument of the print method) :
>>> print (_)
dont forgot the parentheses when use a method to call an argument !