源代码
fruits = ['apple', 'banana', 'cherry'] fruits.insert(1, "orange") print(fruits)
运行结果