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

时间:2022-08-26 22:57:00

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

例如:

Python代码

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

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

例如:

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

Python中 extend 用来连接 list。

例如:

Python代码

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

以上这篇在Python中增加和插入元素的示例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/baidu_21833433/article/details/70313900