标签:修改 结果 根据 append als 进入 app pen 默认
添加元素
append, extend, insert
通过append可以向列表添加元素(被添加的作为一个元素添加进入)
通过extend可以将另一个集合中的元素逐一添加到列表中
insert(index, object) 在指定位置index前插入元素object
修改元素
list[index] = 元素
list为列表
index为列表的索引值 (有则修改,无则添加)
查找元素
in, not in, index, count 都可以
python中查找的常用方法为:
删除元素
del, pop, remove
列表元素的常用删除方法有:
排序
sort, reverse
sort方法是将list按特定顺序重新排列,默认为由小到大,参数reverse=True可改为倒序,由大到小。
标签:修改 结果 根据 append als 进入 app pen 默认
原文地址:https://www.cnblogs.com/hanzeng1993/p/9519927.html