Basic Concepts

marcusjmurphy at gmail.com marcusjmurphy at gmail.com
Wed May 18 20:02:50 EDT 2016


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



More information about the Python-list mailing list