标签:stop max top 调用 print 文件 对象 字典 元组
for循环本质,将列表类通过__iter__()方法变成迭代器对象,然后调用迭代器对象的__next__()遍历
列表迭代器和索引方式访问比较
l = [‘1‘,‘22‘,‘33as‘]
print(l[0] #索引
print(l.__iter__().__next__()) #迭代器
标签:stop max top 调用 print 文件 对象 字典 元组
原文地址:https://www.cnblogs.com/chrrydot/p/9789340.html