Skip to content

Instantly share code, notes, and snippets.

@tcpdump-examples
Created February 13, 2022 13:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tcpdump-examples/3c7715f752734fe79de78ce0056801d1 to your computer and use it in GitHub Desktop.
Save tcpdump-examples/3c7715f752734fe79de78ce0056801d1 to your computer and use it in GitHub Desktop.

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment