Answers for "python delete a variable"

5

python undefine variable

# Basic syntax:
del variable

# Example usage:
variable = 42
print(variable)
--> 42
del variable
print(variable)
--> NameError: name 'variable' is not defined
# Note, this error is what we expect now that the variable has been
# 	deleted
Posted by: Guest on September-27-2020
1

delete variable python

f = 11;
print(f)
del f
print(f)
Posted by: Guest on February-10-2021

Code answers related to "python delete a variable"

Python Answers by Framework

Browse Popular Code Answers by Language