标签:一个 tor 函数实现 迭代 exce nbsp list ext 通过
1 for x in rang(5): 2 pass
实际上完全等给于:
1 # 首先获得Iterator对象: 2 it = iter([0,1,2,3,4]) 3 # 循环: 4 while True: 5 try: 6 # 获得下一个值 7 x = next(it) 8 except StopIteration: 9 # 遇到StopIteration就退出循环 10 break
标签:一个 tor 函数实现 迭代 exce nbsp list ext 通过
原文地址:http://www.cnblogs.com/DUHEI/p/7435875.html