<languages />
Python清单insert()方法
❮清单方法
例
插入值“ orange”作为第二个元素
fruit
列表:
fruits = ['apple', 'banana', 'cherry']
fruits.insert(1, "orange")
定义和用法
The
insert()
方法将指定的值插入指定的位置。
句法
list.insert(pos, elmnt)
参数值
参数
|
描述
|
pos
|
需要。一个数字,指定在哪个位置插入值
|
elmnt
|
需要。任何类型的元素(字符串,数字,对象等)
|
❮清单方法