例如:
插入字符串“orange”作为fruit
列表的第二个元素:
fruits = ['apple', 'banana', 'cherry']fruits.insert(1, "orange")print(fruits)
1、定义和用法
insert()
方法将指定的值插入指定的位置。
2、调用语法
list.insert(pos,elmnt)
3、参数说明
参数 | 描述 |
pos | 必需的参数,一个数字,指定在哪个位置插入值 |
elmnt | 必需的参数,任何类型的元素(字符串,数字,对象等) |
例如:
插入字符串“orange”作为fruit
列表的第二个元素:
fruits = ['apple', 'banana', 'cherry']fruits.insert(1, "orange")print(fruits)
insert()
方法将指定的值插入指定的位置。
list.insert(pos,elmnt)
参数 | 描述 |
pos | 必需的参数,一个数字,指定在哪个位置插入值 |
elmnt | 必需的参数,任何类型的元素(字符串,数字,对象等) |