标签:位置 需要 两种 iterable port 通过 调度 结束 工具
from collections import Iterable
isinstance(list(range(100)),Iterable)
def inc1():
for x in range(10000):
yield x
g = inc1()
print(next(g))
print(next(g))
primeLi = (i for i in range(1000) if i>2)
##如果要一个一个打印出来,可以通过 generator 的 next() 方法
print(next(primeLi))
print(next(primeLi))
标签:位置 需要 两种 iterable port 通过 调度 结束 工具
原文地址:https://www.cnblogs.com/lpdeboke/p/12842311.html