gpt4 book ai didi

python - 删除变量中的变量

转载 作者:行者123 更新时间:2023-12-04 17:03:52 24 4
gpt4 key购买 nike

我希望全面了解一些基本的 Python 函数。 “del”如何产生这个(在bash中):

>>> temp = 1
>>> python = 1 + temp
>>>
>>>
>>> temp
1
>>>
>>> python
2
>>>
>>>
>>> del temp
>>>
>>>
>>> python
2
>>>
>>> temp
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
NameError: name 'temp' is not defined
>>>
>>>
>>>

最佳答案

对于python中的del,意思是

Deletion of a name removes the binding of that name from the local or global namespace

所以当你 del var 时,它删除了这个变量,当你再次调用它时它不可用,这就是发生异常的原因。

关于python - 删除变量中的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22495401/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com