Python 列表 insert() 方法
实例
向fruit
列表中第二个元素插入值“orange”:
fruits = ['apple', 'banana', 'cherry'] fruits.insert(1, "orange")运行示例»
定义和用法
insert()
方法将指定的值插入指定的位置。
语法
list.insert(pos, elmnt)
参数值
参数 | 描述 |
---|---|
pos | 必须项。插入的位置 |
elmnt | 必须项。插入的元素 |
fruit
列表中第二个元素插入值“orange”:
fruits = ['apple', 'banana', 'cherry'] fruits.insert(1, "orange")运行示例»
insert()
方法将指定的值插入指定的位置。
参数 | 描述 |
---|---|
pos | 必须项。插入的位置 |
elmnt | 必须项。插入的元素 |