"""
Created on Thu Aug 29 16:29:56 2019
@author: anil durgam
date:29-08-2019
"""
f = 11;
print(f)
del f
print(f)
output:
del f
^
IndentationError: unexpected indent
Created on Thu Aug 29 16:29:56 2019
@author: anil durgam
date:29-08-2019
"""
f = 11;
print(f)
del f
print(f)
output:
del f
^
IndentationError: unexpected indent
No comments:
Post a Comment