当前位置:主页 > 软件编程 > Python代码 >

在Python中增加和插入元素的示例

时间:2020-12-26 11:22:22 | 栏目:Python代码 | 点击:

在Python中append 用来向 list 的末尾追加单个元素,如果增加的元素是一个list,那么这个list将作为一个整体进行追加。

例如:

Python代码

li=['a', 'b'] 
li.append([2,'d']) 
li.append('e') 
#输出为:['a', 'b', [2, 'd'], 'e'] 

在Python中 insert 用来将单个元素插入到 list 中。数值参数是插入点的索引。

例如:

#Python代码
li=['a', 'b'] 
li.insert(0,"c") 
#输出为:['c', 'a', 'b'] 

Python中 extend 用来连接 list。

例如:

Python代码

li=['a','b'] 
li.extend([2,'e']) 
#输出为:['a', 'b', 2, 'e'] 

您可能感兴趣的文章:

相关文章