在Python中插入列表的第一个位置[关闭]
Posted
技术标签:
【中文标题】在Python中插入列表的第一个位置[关闭]【英文标题】:Insert at first position of a list in Python [closed] 【发布时间】:2014-03-23 06:37:13 【问题描述】:如何在列表的第一个索引处插入元素?
如果我使用list.insert(0, elem)
,elem
会修改第一个索引的内容吗?
还是我必须用第一个元素创建一个新列表,然后将旧列表复制到这个新列表中?
【问题讨论】:
这是What's the idiomatic syntax for prepending to a short python list?的副本。 【参考方案1】:使用insert
:
In [1]: ls = [1,2,3]
In [2]: ls.insert(0, "new")
In [3]: ls
Out[3]: ['new', 1, 2, 3]
【讨论】:
【参考方案2】:来自文档:
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
【讨论】:
以上是关于在Python中插入列表的第一个位置[关闭]的主要内容,如果未能解决你的问题,请参考以下文章