Python 列表方法
Python的 list 类包括以下方法,您可以使用这些方法来添加、更新和删除列表项:
序号 | 方法与描述 |
---|---|
1 | list.append(obj) 向列表末尾添加对象obj |
2 | list.clear() 清空列表内容 |
3 | list.copy() 返回列表对象的副本 |
4 | list.count(obj) 返回obj在列表中出现的次数 |
5 | list.extend(seq) 将seq的内容添加到列表中 |
6 | list.index(obj) 返回列表中obj第一次出现的最低索引 |
7 | list.insert(index, obj) 在偏移量为index的位置插入对象obj到列表中 |
8 | list.pop(obj=list[-1]) 从列表中移除并返回最后一个对象或者obj |
9 | list.remove(obj) 从列表中移除对象obj |
10 | list.reverse() 原地反转列表中的对象 |
11 | list.sort([func]) 对列表中的对象进行排序,如果给定了比较函数则使用它 |