python insert函数用法
时间: 2023-08-02 11:42:26 浏览: 49
python常用函数.docx
在Python中,list数据类型有一个名为insert()的方法,该方法允许您在列表的任意位置插入一个元素。该方法的基本语法如下:
```python
list.insert(index, obj)
```
其中,index是您要插入新元素的位置,obj是您要插入的对象。
例如,以下代码演示了如何使用insert()方法在列表中插入元素:
```python
my_list = [1, 2, 3, 4]
my_list.insert(2, "hello")
print(my_list)
```
输出:
```python
[1, 2, 'hello', 3, 4]
```
在上面的代码中,我们使用insert()方法在位置2插入了一个字符串“hello”。现在列表中的元素顺序是1、2、'hello'、3和4。
阅读全文