首页 > 代码库 > Python列表方法

Python列表方法

方法

描述

aList.append(obj)

等同于aList[len(aList):len(aList)] = [obj]

aList.count(obj)

返回aList[i]==obj中索引i的数值

aList.extend(sequence)

等同于aList[len(aList):len(aList)] = aequence

aList.index(obj)

返回aList[i]==obj中最小的i(如果i不存在会引发ValueError异常)

aList.pop([index])

移除并且返回给定索引的项(默认为-1

aList.remove(obj)

等同于aList[aList.index(obj)]

aList.reverse( )

原地反转aList的项

aList.sort([cmp][, key][, reverse])

aList中的项进行原地排序。可以提供比较函数cmp、创建用于排序的键的key函数和reverse标志(布尔值)进行自定义

Python列表方法