Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to reset a variable in python

f = 11
print(f)
del f
print(f) # This should show a error thing that says that this variable doesn't exist
Source by www.guru99.com #
 
PREVIOUS NEXT
Tagged: #reset #variable #python
ADD COMMENT
Topic
Name
7+7 =