代码示例:(标识:python_list_del_1)
python_list_del_1.py
thislist = ["apple", "banana", "cherry"]
del thislist[0]
print(thislist)
运行结果: