代码示例:(标识:demo_python_set_del)
demo_python_set_del.py
thisset = {"apple", "banana", "cherry"}

del thisset

print(thisset) #this will raise an error because the set no longer exists
运行结果: