Python del 关键字

  • 定义和用法

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

    删除对象:
    class MyClass:
      name = "John"
    
    del MyClass
    
    print(MyClass)
    
    尝试一下
  • 更多例子

    删除变量:
    x = "hello"
    
    del x
    
    print(x)
    
    尝试一下
    删除列表中的第一项:
    x = ["apple", "banana", "cherry"]
    
    del x[0]
    
    print(x)
    
    尝试一下
  • 相关页面

    Python 教程:Python 类与对象