Python/ref keyword del

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python del关键字

❮Python关键字

删除对象:

    class MyClass:
  name = "John"

del MyClass

print(MyClass)

定义和用法

The del 关键字用于删除对象。在Python中,一切都是对象,因此 del 关键字也可用于删除变量,列表或列表的一部分等。

更多例子

删除变量:

    x = "hello"

del x

print(x)

删除列表中的第一项:

    x = 
    ["apple", "banana", "cherry"]

del x[0]

print(x)

❮Python关键字