在Python中列表的第一个位置插入

如何在列表的第一个索引处插入一个元素? 如果我使用list.insert(0,elem),请elem修改第一个索引的内容? 或者,我必须创build一个新的列表与第一elem,然后复制在这个新的旧列表?

找出最好的方法就是运行一个例子:

 In [1]: ls = [1,2,3] In [2]: ls.insert(0, "new") In [3]: ls Out[3]: ['new', 1, 2, 3] 

从文档:

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