迭代器
Posted chb420
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了迭代器相关的知识,希望对你有一定的参考价值。
------------恢复内容开始------------
迭代器 实际就是调用next方法
使被处理对象通过__iter__在内部建立一个对应的next方法
f=open("text.txt","r+")
iter_f=f.__iter__()
print(iter_f.__next__(),end="")
print(iter_f.__next__(),end="")
三元表达式
name="chb"
res="nb" if name=="chb" else "lj"
print(res)
生成器:自动实现了迭代器协议
两种生成器:
g_l=(i for i in range (10))
def test():
yield 1
yield 2
yield 3
print(test().__next__())
生成器的优点:
延迟计算:一次返回一个结果 对于大数据处理 非常有用
列表解析 sum{[i for i in range (1000000)]} 内存占用大
生成器
sum(i for i in range (1000000))
------------恢复内容结束------------
以上是关于迭代器的主要内容,如果未能解决你的问题,请参考以下文章