On Wednesday, April 27, 2016 at 2:29:25 AM UTC-7, Smith wrote:
> Fill in the blanks to declare a variable, add 5 to it and print its value:
> 
>  >>> x = 4
>  >>> x_ = 5
>  >>> print_
> 
> 
> Any suggestion ?
> 
> Thanks

>>> x = 4
>>> x += 5
>>> print(x)
9
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to