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