代码示例:(标识:python_ref_keyword_del_3)
python_ref_keyword_del_3.py
x = ["apple", "banana", "cherry"]

del x[0]

print(x)
运行结果: