代码示例:(标识:demo_python_tuple_del)
demo_python_tuple_del.py
thistuple = ("apple", "banana", "cherry")
del thistuple
print(thistuple) #this will raise an error because the tuple no longer exists
运行结果: