- list(seq)
将元组转换为列表 - list.count(obj)
count() 方法用于统计某个元素在列表中出现的次数。 - list.extend(seq)
aList = [123, 'xyz', 'zara', 'abc', 123];
bList = [2009, 'manni'];
aList.extend(bList)
print "Extended List : ", aList ;
Extended List : [123, 'xyz', 'zara', 'abc', 123, 2009, 'manni']
- list.index(x[, start[, end]])
在列表中找出某个值第一个匹配项的索引位置
x-- 查找的对象。
start-- 可选,查找的起始位置。
end-- 可选,查找的结束位置。 - list.insert(index,obj)
index – 对象 obj 需要插入的索引位置。
obj – 要插入列表中的对象。 - list.pop(index=-1)
移除列表中的一个元素(默认最后一个元素),并且返回该元素的值 - list.remove()
该方法没有返回值,但是会对列表的元素进行反向排序。 - list.sort(key=None, reverse=False)
对原列表进行排序
def takeSecond(elem):
return elem[1]
random = [(2, 2), (3, 4), (4, 1), (1, 3)]
random.sort(key=takeSecond)
>> [(4, 1), (2, 2), (1, 3), (3, 4)]