挨个访问,直到没有出现StopIteration错误。
while true:
try:
each=next(it)
except StopIteration:
break
print(each)
for each in string:
print(each)
Posted y1995
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python--迭代器相关的知识,希望对你有一定的参考价值。
挨个访问,直到没有出现StopIteration错误。
while true:
try:
each=next(it)
except StopIteration:
break
print(each)
for each in string:
print(each)
以上是关于python--迭代器的主要内容,如果未能解决你的问题,请参考以下文章