代码示例:(标识:demo_python_ref_keyword_del_2)
demo_python_ref_keyword_del_2.py
x = "hello"

del x

print(x)
运行结果: