Python列表操作
Posted mitsuhide1992
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python列表操作相关的知识,希望对你有一定的参考价值。
列表
基本列表方法
访问列表:
#!/usr/bin/python
list1 = ['physics', 'chemistry', 1997, 2000];
list2 = [1, 2, 3, 4, 5, 6, 7 ];
print "list1[0]: ", list1[0]
print "list2[1:5]: ", list2[1:5]
结果:
list1[0]: physics
list2[1:5]: [2, 3, 4, 5]
通过列表下标就能更新列表:list1[0] = "math"
这样
列表方法总结
方法 | 作用 |
---|---|
list1[0],list2[1:5] | 访问列表元素 |
list1[0] = “math” | 更新列表元素 |
del list1[2] | 删除列表元素 |
cmp(list1, list2) | 比较两个列表的元素 |
len(list) | 列表元素个数 |
max(list) | 返回列表元素最大值 |
min(list) | 返回列表元素最小值 |
list(seq) | 将元组转换为列表 |
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]) | 对原列表进行排序 |
循环中获取索引(列表下标)
ints = [8, 23, 45, 12, 78]
当循环这个列表时如何获得它的索引下标?
如果像C或者php那样加入一个状态变量那就太不pythonic了.
最好的选择就是用内建函数enumerate
for idx, val in enumerate(ints):
print idx, val
循环中的筛选
arr = [1,2,3,4,5]
[item for item in arr if item > 3]
[4, 5]
参考链接
python教程:http://www.runoob.com/python/python-tutorial.html
以上是关于Python列表操作的主要内容,如果未能解决你的问题,请参考以下文章