标签:xtend 方法 app remove sequence 数值 == 默认 end
方法 |
描述 |
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标志(布尔值)进行自定义 |
标签:xtend 方法 app remove sequence 数值 == 默认 end
原文地址:http://www.cnblogs.com/chunmiao/p/6753628.html