Python添加元素有三种方法:append、extend、insert
append:向列表添加元素,添加到尾部
实例:
list="my","name","is","mark","age",18...my', 'name', 'is', 'mark', 'age', 18
添加后: 'my', 'name', 'is', 'mark', 'age', 18, 'test'
extend:将另外一个列表的元素逐一添加到指定列表中...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