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

Fill the blanks spaces and declare a variable ,add 5 and print its value

>>>x =4 >>>x _=5 >>>print _

28th Mar 2020, 4:18 AM
Fabrice njodzeven
Fabrice njodzeven - avatar
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 !
28th Mar 2020, 4:26 AM
Oneill~Онеилл~奥尼尔~ओनील~اونیل~*‎
Oneill~Онеилл~奥尼尔~ओनील~اونیل~*‎ - avatar