跟老齐学Python之再深点,更懂list


Posted in Python onSeptember 20, 2014

list解析

先看下面的例子,这个例子是想得到1到9的每个整数的平方,并且将结果放在list中打印出来

>>> power2 = []
>>> for i in range(1,10):
...   power2.append(i*i)
... 
>>> power2
[1, 4, 9, 16, 25, 36, 49, 64, 81]

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')]

在这里有类似(0,'Spring')这样的东西,这是另外一种数据类型,待后面详解。

Python 相关文章推荐
将Python代码嵌入C++程序进行编写的实例
Jul 31 Python
Python 文件操作的详解及实例
Sep 18 Python
利用Python2下载单张图片与爬取网页图片实例代码
Dec 25 Python
浅谈利用numpy对矩阵进行归一化处理的方法
Jul 11 Python
Python类中方法getitem和getattr详解
Aug 30 Python
tensorflow2.0保存和恢复模型3种方法
Feb 03 Python
windows下Pycharm安装opencv的多种方法
Mar 05 Python
Tensorflow之梯度裁剪的实现示例
Mar 08 Python
python中def是做什么的
Jun 10 Python
Pytorch上下采样函数--interpolate用法
Jul 07 Python
python中取绝对值简单方法总结
Jul 24 Python
Python hashlib和hmac模块使用方法解析
Dec 08 Python
跟老齐学Python之画圈还不简单吗?
Sep 20 #Python
跟老齐学Python之list和str比较
Sep 20 #Python
Python显示进度条的方法
Sep 20 #Python
python中对list去重的多种方法
Sep 18 #Python
Python中用Descriptor实现类级属性(Property)详解
Sep 18 #Python
Python中的闭包总结
Sep 18 #Python
python的即时标记项目练习笔记
Sep 18 #Python
You might like
增加反向链接的101个方法 站长推荐
2007/01/31 PHP
保存到桌面、设为桌面且带图标的PHP代码
2013/11/19 PHP
修改ThinkPHP缓存为Memcache的方法
2014/06/25 PHP
Yii框架中sphinx索引配置方法解析
2016/10/18 PHP
简单谈谈PHP中的Reload操作
2016/12/12 PHP
Gambit vs ForZe BO3 第二场 2.13
2021/03/10 DOTA
javascript整除实现代码
2010/11/23 Javascript
JS实现点击复选框将按钮或文本框变为灰色不可用的方法
2015/08/11 Javascript
jquery图片滚动放大代码分享(2)
2015/08/28 Javascript
分享12个实用的jQuery代码片段
2016/03/09 Javascript
JavaScript数值千分位格式化的两种简单实现方法
2016/08/01 Javascript
DOM中事件处理概览与原理的全面解析
2016/08/16 Javascript
js+canvas实现动态吃豆人效果
2017/03/22 Javascript
Nodejs中Express 常用中间件 body-parser 实现解析
2017/05/22 NodeJs
vue如何获取点击事件源的方法
2017/08/10 Javascript
解决微信小程序防止无法回到主页的问题
2018/09/28 Javascript
2019 年编写现代 JavaScript 代码的5个小技巧(小结)
2019/01/15 Javascript
js作用域和作用域链及预解析
2019/04/11 Javascript
python虚拟环境 virtualenv的简单使用
2020/01/21 Javascript
[02:18]DOTA2英雄基础教程 育母蜘蛛
2014/01/20 DOTA
[01:24:16]2018DOTA2亚洲邀请赛 4.6 全明星赛
2018/04/10 DOTA
Python虚拟环境Virtualenv使用教程
2015/05/18 Python
JSON Web Tokens的实现原理
2017/04/02 Python
Python实现购物评论文本情感分析操作【基于中文文本挖掘库snownlp】
2018/08/07 Python
python解析yaml文件过程详解
2019/08/30 Python
Lampegiganten丹麦:欧洲领先的照明网上商店
2018/04/25 全球购物
英国鹦鹉店:Parrot Essentials
2018/12/03 全球购物
全球500多个机场的接送服务:Suntransfers
2019/06/03 全球购物
财务主管的岗位职责
2013/12/30 职场文书
《玩具柜台前的孩子》教学反思
2014/02/13 职场文书
《盲人摸象》教学反思
2014/02/16 职场文书
八项规定整改方案
2014/10/01 职场文书
春秋淹城导游词
2015/02/11 职场文书
给领导敬酒词
2015/08/12 职场文书
使用feign服务调用添加Header参数
2021/06/23 Java/Android
Python编程中Python与GIL互斥锁关系作用分析
2021/09/15 Python