Python 列表 insert() 方法
例子
将值 "orange" 插入 fruit
列表的第二个元素
fruits = ['apple', 'banana', 'cherry']
fruits.insert(1, "orange")
亲自尝试 »
定义和用法
The insert()
方法在指定位置插入指定的值。
语法
list.insert(pos, elmnt)
参数值
参数 | 描述 |
---|---|
pos | 必需。指定插入值的位的数字 |
elmnt | 必需。任何类型的元素(字符串、数字、对象等) |