代码示例:(标识:python_list_insert)
python_list_insert.py
thislist = ["apple", "banana", "cherry"]
thislist.insert(1, "orange")
print(thislist)
运行结果: