标签:sys list 最大的 strong 可迭代对象 next __iter__ col 使用
什么是可迭代对象?什么是迭代器?
迭代器的特性
>>> list=[1,2,3,4] >>> it = iter(list) # 创建迭代器对象 >>> print (next(it)) # 输出迭代器的下一个元素 1 >>> print (next(it)) 2 >>>
迭代器对象可以使用常规for语句进行遍历:
#!/usr/bin/python3 list=[1,2,3,4] it = iter(list) # 创建迭代器对象 for x in it: print (x, end=" ")
也可以使用 next() 函数:
#!/usr/bin/python3 import sys # 引入 sys 模块 list=[1,2,3,4] it = iter(list) # 创建迭代器对象 while True: try: print (next(it)) except StopIteration: sys.exit()
标签:sys list 最大的 strong 可迭代对象 next __iter__ col 使用
原文地址:https://www.cnblogs.com/chaojiyingxiong/p/14787072.html