“Удалить переменную Python” Ответ

Python Undefine переменная

# 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
Charles-Alexandre Roy

Удалить переменную Python

f = 11;
print(f)
del f
print(f)
Glamorous Grasshopper

Ответы похожие на “Удалить переменную Python”

Вопросы похожие на “Удалить переменную Python”

Больше похожих ответов на “Удалить переменную Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования