Python del 关键字
定义和用法
del 用于删除对象。在 Python,一切都是对象,因此 del 关键字可用于删除变量、列表或列表片段等。
更多实例
实例
删除变量:
x = "hello" del x print(x)
实例
删除列表中的首个项目:
x = ["apple", "banana", "cherry"] del x[0] print(x)
del 用于删除对象。在 Python,一切都是对象,因此 del 关键字可用于删除变量、列表或列表片段等。
删除变量:
x = "hello" del x print(x)
删除列表中的首个项目:
x = ["apple", "banana", "cherry"] del x[0] print(x)