深入了解Python iter() 方法的用法


Posted in Python onJuly 11, 2019

今天我们来介绍下Python基础教程学习之iter() 方法另外的用法。据说很少有人知道这个用法!

一、上代码、学用法

我们都比较熟悉 iter(obj),会返现一个迭代器,如果 obj 不是可迭代对象,则会报错。但其实如果仔细看官方文档,会发现 iter() 方法其实是接受两个参数的,文档说明如下

iter(object[, sentinel])

sentinel 英文翻译为 哨兵。

sentinel 参数是可选的,当它存在时,object 不再传入一个可迭代对象,而是一个可调用对象,通俗点说就是可以通过()调用的对象,而 sentinel 的作用就和它的翻译一样,是一个“哨兵”,当时可调用对象返回值为这个“哨兵”时,循环结束,且不会输出这个“哨兵”。

可能有点难懂,用一个简单需求来说明,需求说明如下:

心里想一个[1, 10]范围的数,然后代码开始随机,当随机到想的数时停止,看每次代码需要随机几次。

实现分析:看起来应该很简单,random,然后加一个if判断即可,但是用 iter() 来实现更简单。实现代码如下:

from random import randint
def guess():
 return randint(0, 10)
num = 1
# 这里先写死心里想的数为5
for i in iter(guess, 5):
 print("第%s次猜测,猜测数字为: %s" % (num, i))
 num += 1
# 当 guess 返回的是 5 时,会抛出异常 StopIteration,但 for 循环会处理异常,即会结束循环

二、还是看看文档吧

关于这两个参数,文档里也说的很详细,分段解释如下:

The first argument is interpreted very differently depending on the presence of the second argument.

翻译:第一个参数根据第二个参数有不同的含义

Without a second argument, object must be a collection object which supports the iteration protocol (the _iter_() method), or it must support the sequence protocol (the _getitem_() method with integer arguments starting at 0). If it does not support either of those protocols, TypeError is raised.

翻译:如果没有第二个参数,object(即第一个参数)是一个支持迭代器协议(实现_iter_()方法的)的集合对象,或者是支持序列协议(实现_getitem_()方法)且是从0开始索引。如果它不支持其中任何一个,则抛出 TypeError 异常

简单来说就是,如果没有第二个参数,就是我们比较熟悉的用法。代码示例如下:

In [5]: iter("123")
Out[5]: <str_iterator at 0x105c9b9e8>
In [6]: iter([1, 2, 3])
Out[6]: <list_iterator at 0x105f9f8d0>
In [7]: iter(123)
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-7-c76acad08c3c> in <module>()
----> 1 iter(123)
TypeError: 'int' object is not iterable

再来看看有第二个参数的情况

If the second argument, sentinel, is given, then object must be a callable object. The iterator created in this case will call object with no arguments for each call to its _next_() method; if the value returned is equal to sentinel, StopIteration will be raised, otherwise the value will be returned.

翻译:如果给定了第二个参数 sentinel,object 则必须是一个可调用对象,这个可调用对象没有任何参数,当可调用对象的返回值等于 sentinel 的值时,抛出 StopIteration 的异常,否则返回当前值。(这里如果不好理解可调用对象,可以理解为函数,这样更容易想明白)

对于这个用法的适用场景,文档中也给出了说明:

One useful application of the second form of iter() is to build a block-reader. For example, reading fixed-width blocks from a binary database file until the end of file is reached:

翻译:对于第二个参数,一个有用的场景是创建一个 blokc-reader,即根据条件中断读取。比如:从二进制数据库文件读取固定宽度的块,直到到达文件的末尾,代码示例如下:

from functools import partial
with open('mydata.db', 'rb') as f:
 for block in iter(partial(f.read, 64), b''):
 process_block(block)

三、小结一下

1、iter() 方法不管有没有第二个参数,返回的都是迭代器

2、iter() 方法第一个参数的参数类型,根据有无第二个参数决定

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python33 urllib2使用方法细节讲解
Dec 03 Python
Python导出数据到Excel可读取的CSV文件的方法
May 12 Python
说一说Python logging
Apr 15 Python
python 内置函数filter
Jun 01 Python
python3.6+opencv3.4实现鼠标交互查看图片像素
Feb 26 Python
Python实现检测文件MD5值的方法示例
Apr 11 Python
Python+selenium实现自动循环扔QQ邮箱漂流瓶
May 29 Python
Python 输出时去掉列表元组外面的方括号与圆括号的方法
Dec 24 Python
PyTorch的自适应池化Adaptive Pooling实例
Jan 03 Python
Python restful框架接口开发实现
Apr 13 Python
Python 发送邮件方法总结
Aug 10 Python
python基础之匿名函数详解
Apr 21 Python
用python给自己做一款小说阅读器过程详解
Jul 11 #Python
Python 200行代码实现一个滑动验证码过程详解
Jul 11 #Python
ML神器:sklearn的快速使用及入门
Jul 11 #Python
python 随机森林算法及其优化详解
Jul 11 #Python
python实现从本地摄像头和网络摄像头截取图片功能
Jul 11 #Python
python常用库之NumPy和sklearn入门
Jul 11 #Python
python在新的图片窗口显示图片(图像)的方法
Jul 11 #Python
You might like
php中使用Curl、socket、file_get_contents三种方法POST提交数据
2011/08/12 PHP
让Json更懂中文(JSON_UNESCAPED_UNICODE)
2011/10/27 PHP
PHP输入流php://input介绍
2012/09/18 PHP
ThinkPHP多表联合查询的常用方法
2020/03/24 PHP
10个对初学者非常有用的PHP技巧
2016/04/06 PHP
PHP中如何使用Redis接管文件存储Session详解
2018/11/28 PHP
使用PHP开发留言板功能
2019/11/19 PHP
JQuery下的Live方法和$.browser方法使用代码
2010/06/02 Javascript
jquery创建并行对象或者合并对象的实现代码
2012/10/10 Javascript
jquery控制display属性为none或block
2014/03/31 Javascript
jquery实现的横向二级导航效果代码
2015/08/26 Javascript
基于Vue.js的表格分页组件
2016/05/22 Javascript
jQuery实现删除li节点的方法
2016/12/06 Javascript
Bootstrap实现下拉菜单多级联动
2017/11/23 Javascript
webpack构建的详细流程探底
2018/01/08 Javascript
使用Vue.js开发微信小程序开源框架mpvue解析
2018/03/20 Javascript
C#程序员入门学习微信小程序的笔记
2019/03/05 Javascript
详解vue-property-decorator使用手册
2019/07/29 Javascript
vuex(vue状态管理)的特殊应用案例分享
2020/03/03 Javascript
python创建和删除目录的方法
2015/04/29 Python
详解python多线程、锁、event事件机制的简单使用
2018/04/27 Python
python实现决策树分类
2018/08/30 Python
详解Python 定时框架 Apscheduler原理及安装过程
2019/06/14 Python
python通过robert、sobel、Laplace算子实现图像边缘提取详解
2019/08/21 Python
tensorflow estimator 使用hook实现finetune方式
2020/01/21 Python
python_matplotlib改变横坐标和纵坐标上的刻度(ticks)方式
2020/05/16 Python
python opencv实现直线检测并测出倾斜角度(附源码+注释)
2020/12/31 Python
HTML5中的nav标签学习笔记
2016/06/24 HTML / CSS
德国知名健康零食网上商店:Seeberger
2017/07/27 全球购物
英国第一独立滑雪板商店:The Snowboard Asylum
2020/01/16 全球购物
全球最大化妆品零售网站:SkinStore
2020/10/24 全球购物
八年级音乐教学反思
2014/01/09 职场文书
四年级下册教学反思
2014/02/01 职场文书
房地产销售员岗位职责
2015/04/11 职场文书
赡养老人协议书范本
2015/08/06 职场文书
浅谈Python数学建模之数据导入
2021/06/23 Python