Python中list列表的一些进阶使用方法介绍


Posted in Python onAugust 15, 2015

判断一个 list 是否为空

传统的方式:

if len(mylist):
  # Do something with my list
else:
  # The list is empty

由于一个空 list 本身等同于 False,所以可以直接:

if mylist:
  # Do something with my list
else:
  # The list is empty

遍历 list 的同时获取索引

传统的方式:

i = 0
for element in mylist:
  # Do something with i and element
  i += 1

这样更简洁些:

for i, element in enumerate(mylist):
  # Do something with i and element
  pass

list 排序

在包含某元素的列表中依据某个属性排序是一个很常见的操作。例如这里我们先创建一个包含 person 的 list:

class Person(object):
  def __init__(self, age):
    self.age = age

persons = [Person(age) for age in (14, 78, 42)]

传统的方式是:

def get_sort_key(element):
  return element.age

for element in sorted(persons, key=get_sort_key):
  print "Age:", element.age

更加简洁、可读性更好的方法是使用 Python 标准库中的 operator 模块:

from operator import attrgetter

for element in sorted(persons, key=attrgetter('age')):
  print "Age:", element.age

attrgetter 方法优先返回读取的属性值作为参数传递给 sorted 方法。operator 模块还包括 itemgetter 和 methodcaller 方法,作用如其字面含义。

list解析

python有一个非常有意思的功能,就是list解析,就是这样的:

>>> squares = [x**2 for x in range(1,10)]
>>> squares
[1, 4, 9, 16, 25, 36, 49, 64, 81]

看到这个结果,看官还不惊叹吗?这就是python,追求简洁优雅的python!

其官方文档中有这样一段描述,道出了list解析的真谛:

    List comprehensions provide a concise way to create lists. Common applications are to make new lists where each element is the result of some operations applied to each member of another sequence or iterable, or to create a subsequence of those elements that satisfy a certain condition.

还记得前面一讲中的那个问题吗?

    找出100以内的能够被3整除的正整数。

我们用的方法是:

aliquot = []

for n in range(1,100):
  if n%3 == 0:
    aliquot.append(n)

print aliquot

好了。现在用list解析重写,会是这样的:

>>> aliquot = [n for n in range(1,100) if n%3==0]
>>> aliquot
[3, 6, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 51, 54, 57, 60, 63, 66, 69, 72, 75, 78, 81, 84, 87, 90, 93, 96, 99]

震撼了。绝对牛X!

其实,不仅仅对数字组成的list,所有的都可以如此操作。请在平复了激动的心之后,默默地看下面的代码,感悟一下list解析的魅力。

>>> mybag = [' glass',' apple','green leaf ']  #有的前面有空格,有的后面有空格
>>> [one.strip() for one in mybag]       #去掉元素前后的空格
['glass', 'apple', 'green leaf']

enumerate

这是一个有意思的内置函数,本来我们可以通过for i in range(len(list))的方式得到一个list的每个元素编号,然后在用list[i]的方式得到该元素。如果要同时得到元素编号和元素怎么办?就是这样了:

>>> for i in range(len(week)):
...   print week[i]+' is '+str(i)   #注意,i是int类型,如果和前面的用+连接,必须是str类型
... 
monday is 0
sunday is 1
friday is 2

python中提供了一个内置函数enumerate,能够实现类似的功能

>>> for (i,day) in enumerate(week):
...   print day+' is '+str(i)
... 
monday is 0
sunday is 1
friday is 2

算是一个有意思的内置函数了,主要是提供一个简单快捷的方法。

官方文档是这么说的:

    Return an enumerate object. sequence must be a sequence, an iterator, or some other object which supports iteration. The next() method of the iterator returned by enumerate() returns a tuple containing a count (from start which defaults to 0) and the values obtained from iterating over sequence:

顺便抄录几个例子,供看官欣赏,最好实验一下。

>>> seasons = ['Spring', 'Summer', 'Fall', 'Winter']
>>> list(enumerate(seasons))
[(0, 'Spring'), (1, 'Summer'), (2, 'Fall'), (3, 'Winter')]
>>> list(enumerate(seasons, start=1))
[(1, 'Spring'), (2, 'Summer'), (3, 'Fall'), (4, 'Winter')]
Python 相关文章推荐
Python中的生成器和yield详细介绍
Jan 09 Python
删除python pandas.DataFrame 的多重index实例
Jun 08 Python
python+splinter实现12306网站刷票并自动购票流程
Sep 25 Python
Python3.5内置模块之os模块、sys模块、shutil模块用法实例分析
Apr 27 Python
Python socket模块ftp传输文件过程解析
Nov 05 Python
Python切割图片成九宫格的示例代码
Mar 10 Python
python实现二分查找算法
Sep 18 Python
Python 实现国产SM3加密算法的示例代码
Sep 21 Python
python 爬取免费简历模板网站的示例
Sep 27 Python
Python使用eval函数执行动态标表达式过程详解
Oct 17 Python
浅谈Python数学建模之固定费用问题
Jun 23 Python
Python实现查询剪贴板自动匹配信息的思路详解
Jul 09 Python
Python中的super()方法使用简介
Aug 14 #Python
在Python中使用正则表达式的方法
Aug 13 #Python
简单讲解Python中的闭包
Aug 11 #Python
Python实现短网址ShortUrl的Hash运算实例讲解
Aug 10 #Python
python实现web方式logview的方法
Aug 10 #Python
python实现JAVA源代码从ANSI到UTF-8的批量转换方法
Aug 10 #Python
python用10行代码实现对黄色图片的检测功能
Aug 10 #Python
You might like
PHP时间戳使用实例代码
2008/06/07 PHP
discuz程序的PHP加密函数原理分析
2011/08/05 PHP
php阿拉伯数字转中文人民币大写
2015/12/21 PHP
PHP内核探索之解释器的执行过程
2015/12/22 PHP
Zend Framework分页类用法详解
2016/03/22 PHP
php生成图片缩略图功能示例
2017/02/22 PHP
Extjs入门之动态加载树代码
2010/04/09 Javascript
基于node.js的快速开发透明代理
2010/12/25 Javascript
从面试题学习Javascript 面向对象(创建对象)
2012/03/30 Javascript
js如何获取file控件的完整路径具体实现代码
2013/05/15 Javascript
node.js操作mysql(增删改查)
2015/07/24 Javascript
javascript实现禁止复制网页内容汇总
2015/12/30 Javascript
JavaScript实现窗口抖动效果
2016/10/19 Javascript
javascript实现动态显示颜色块的报表效果
2017/04/10 Javascript
AngularJS实现tab选项卡的方法详解
2017/07/05 Javascript
详解JS中的this、apply、call、bind(经典面试题)
2017/09/19 Javascript
jQuery实现点击DIV同时点击CheckBox,并为DIV上背景色的实例
2017/12/18 jQuery
vue 过滤器filter实例详解
2018/03/14 Javascript
JavaScript实用代码小技巧
2018/08/23 Javascript
Vue自定义render统一项目组弹框功能
2020/06/07 Javascript
[07:40]DOTA2每周TOP10 精彩击杀集锦vol.4
2014/06/25 DOTA
python开发之str.format()用法实例分析
2016/02/22 Python
Python后台开发Django的教程详解(启动)
2019/04/08 Python
python 求一个列表中所有元素的乘积实例
2019/06/11 Python
Python实现计算对象的内存大小示例
2019/07/10 Python
使用Python实现将多表分批次从数据库导出到Excel
2020/05/15 Python
使用HTML5的表单验证的简单示例
2015/09/09 HTML / CSS
全球最大的网上自行车商店:Chain Reaction Cycles
2016/12/02 全球购物
SHEIN美国:购买时髦的女性服装
2020/12/02 全球购物
团委书记的竞聘演讲稿
2014/04/24 职场文书
优秀德育工作者事迹材料
2014/05/07 职场文书
机电一体化毕业生自荐信
2014/06/19 职场文书
安装工程师岗位职责
2015/02/13 职场文书
三行辞职书范文
2015/02/26 职场文书
致青春观后感
2015/06/09 职场文书
英语导游欢迎词
2015/09/30 职场文书