Python 列表如何添加元素

Posted CaoDavidgogo

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python 列表如何添加元素相关的知识,希望对你有一定的参考价值。

Python添加元素有三种方法:append、extend、insert

append:向列表添加元素,添加到尾部

实例:

list=["my","name","is","mark","age",18]
print("添加前:",list)
list.append("test")
print("添加后:",list)
打印结果:

添加前: [my, name, is, mark, age, 18]
添加后: [my, name, is, mark, age, 18, test]

extend:将另外一个列表的元素逐一添加到指定列表中

实例:

list=["my","name","is","mark","age",18]
print("extend前:",list)
list2=["A","B"]
list.extend(list2)
print("extend后:",list)
打印结果:

extend前: [my, name, is, mark, age, 18]
extend后: [my, name, is, mark, age, 18, A, B]

inset(index,objectA):在指定位置index前面插入对象objectA

实例:

list=["my","name","is","mark","age",18]
print("insert前:",list)
list.insert(3,"test")
print("insert后:",list)
打印结果:

insert前: [my, name, is, mark, age, 18]
insert后: [my, name, is, test, mark, age, 18]

add items to a list in python

how to append list in python

how to sort list in python

how to use python list insert method

python lists everything you need to know

以上是关于Python 列表如何添加元素的主要内容,如果未能解决你的问题,请参考以下文章

Python基础课:列表常用的方法

python list怎么添加元素

python基础3

在python中怎么把列表中的元素添加到字典中

Python 数据类型

在python中怎么把列表中的元素添加到字典中