标签:接收 png 迭代 bubuko 分享 技术 ima img next
a = [1,2,3,4] a为可迭代对象
b = iter(a) b为a的迭代器
c = next(b) c来接收每个对象
以下是用法,以及for类似底层迭代器用法:
迭代器
原文地址:https://www.cnblogs.com/cxhzy/p/9872384.html