>>> x=1>>> print x1>>> del x>>> print xTraceback (most recent call last): File "", line 1, in NameError: name 'x' is not defined
>>> x=1>>> print x1>>> x=None>>> print xNone
No comments:
Post a Comment