python中如何使用del删除变量?

美女程序员鼓励师

本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。

1、概念

del语句在删除变量时,是解除变量对数据的引用,而不是直接删除数据,不是把内存地址删了,只是删除了引用,数据就变为了一个可回收的对象,然后内存会被不定期回收。

2、使用注意

使用 del 关键字(delete) 同样可以删除列表中元素

del 关键字本质上是用来 将一个变量从内存中删除的

如果使用 del 关键字将变量从内存中删除,后续的代码就不能再使用这个变量了

3、实例

>>> x = 1

>>> del x

>>> x

Traceback (most recent call last):

File "<pyshell#6>", line 1, in <module>

x

NameError: name 'x' is not defined

>>> x = ['Hello','world']

>>> y = x

>>> y

['Hello', 'world']

>>> x

['Hello', 'world']

>>> del x

>>> x

Traceback (most recent call last):

File "<pyshell#12>", line 1, in <module>

x

NameError: name 'x' is not defined

>>> y

['Hello', 'world']

>>>

以上就是python中使用del删除变量的方法,大家对于一些数据,也可以采取这种删除的方法释放内容。学会后也试试相关的del操作吧

以上是 python中如何使用del删除变量? 的全部内容, 来源链接: utcz.com/z/543240.html

回到顶部