关键词:list
list函数
list1, list2 = [123, 'xyz'], [456, 'abc']
print cmp(list1, list2); #-1
print cmp(list2, list1); # 1
list3 = list2 + [786];
print cmp(list2, list3) # -1
函数 | 描述 |
---|---|
1 cmp(list1, list2) | 比较两个列表的元素 |
2 len(list) | 列表元素个数 |
3 max(list) | 返回列表元素最大值 |
4 min(list) | 返回列表元素最小值 |
5 list(seq) | 将元组转换为列表 |
list方法
和JavaScript操作数组的方法类似
aList = [123, 'xyz', 'zara', 'abc', 123];
print "Count for 123 : ", aList.count(123); # 2
print "Count for zara : ", aList.count('zara'); # 1
方法 | 描述 |
---|---|
list.append(obj) | 在列表末尾添加新的对象 |
list.count(obj) | 统计某个元素在列表中出现的次数 |
list.extend(seq) | 在列表末尾一次性追加另一个序列中的多个值(用新列表扩展原来的列表) |
list.index(obj) | 从列表中找出某个值第一个匹配项的索引位置 |
list.insert(index, obj) | 将对象插入列表 |
list.pop(obj=list[-1]) | 移除列表中的一个元素(默认最后一个元素),并且返回该元素的值 |
list.remove(obj) | 移除列表中某个值的第一个匹配项 |
list.reverse() | 反向列表中元素 |
list.sort([func]) | 对原列表进行排序 |
注意:Python的元组与列表类似,不同之处在于元组的元素不能修改。
# 元组中只包含一个元素时,需要在元素后面添加逗号
tup1 = (50,);