判断题python通过insert方法可以在指定的索引位置插入元素
时间: 2024-03-05 14:50:37 浏览: 68
是的,这是正确的。Python中的列表对象具有insert()方法,可以在指定的索引位置插入元素。例如,以下代码将在列表的第二个位置插入元素'apple':
```
fruits = ['banana', 'orange', 'kiwi']
fruits.insert(1, 'apple')
print(fruits)
```
输出:
```
['banana', 'apple', 'orange', 'kiwi']
```
阅读全文