鱼C论坛

 找回密码
 立即注册
查看: 2049|回复: 4

[技术交流] Python 小技巧 069:iter() 函数的另一个用法

[复制链接]
发表于 2020-2-28 20:44:22 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
iter() 函数除了获取可迭代对象的迭代器,还有另一个用法。

看一下帮助文档:
>>> help(iter)
Help on built-in function iter in module builtins:

iter(...)
    iter(iterable) -> iterator
    iter(callable, sentinel) -> iterator
    
    Get an iterator from an object.  In the first form, the argument must
    supply its own iterator, or be a sequence.
    In the second form, the callable is called until it returns the sentinel.

它的第二种形式是:
iter(callable, sentinel) -> iterator

返回的也是一个迭代器。当函数 callable 调用的结果不为 sentinel 时,返回调用结果。否则退出循环。

iter() 函数可以在询问用户输入多行时用到:
print("请输入多行文本(连按两次 <Enter> 键退出):")
res = []
for i in iter(input, ''):
    res.append(i)
print("你输入的文本是:")
print("\n".join(res))

运行结果:
请输入多行文本(连按两次 <Enter> 键退出):
asdasdasd
fghfghfgh

你输入的文本是:
asdasdasd
fghfghfgh

iter() 函数还能这样用:
n = 0


def f():
    global n
    n += 1
    return n


for i in iter(f, 5):    # 当 f() 不为 5 时继续循环
    print(i)

运行结果:
1
2
3
4

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-3-12 14:59:11 | 显示全部楼层
已经了解!@zltzlt
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-4-3 13:54:22 | 显示全部楼层
新语法:
res = []
while(i:=input()):
    res.append(i)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-4-7 11:56:19 | 显示全部楼层

:= 说:跟我们海象有啥关系
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-4-7 11:59:29 | 显示全部楼层

加一句提示:
res = []
print("Press <Enter> to exit.")
while(i:=input()):
    res.append(i)
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-25 14:33

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表