问题:在Python列表的第一位置插入[关闭]
如何在列表的第一个索引处插入元素?如果我使用list.insert(0,elem),elem是否会修改第一个索引的内容?还是我必须使用第一个元素创建一个新列表,然后将旧列表复制到这个新列表中?
回答 0
用途insert
:
In [1]: ls = [1,2,3]
In [2]: ls.insert(0, "new")
In [3]: ls
Out[3]: ['new', 1, 2, 3]
回答 1
从文档中:
list.insert(i,x)
在给定位置插入项目。第一个参数是要在其之前插入的元素的索引,因此a.insert(0, x)
将其插入 到列表的开头,并且a.insert(len(a),x)
等效于a.append(x)
http://docs.python.org/2/tutorial/datastructures.html#more-on-lists