码迷,mamicode.com
首页 > 编程语言 > 详细

【Python48--魔法方法:迭代器&生成器】

时间:2018-11-26 23:17:49      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:lis   amp   迭代器   pre   pytho   while   for   生成器   ati   

一、迭代器

 1、iter()    

__iter__()

2、next()

__next__()

二、用while语句实现for语句相同的功能

for each in range(5):
    print(each)
#用while实现方式
list1 = range(0,5) it = iter(list1) while True: try: print(next(it)) except StopIteration: break 执行结果: 0 1 2 3 4 >>>

 

【Python48--魔法方法:迭代器&生成器】

标签:lis   amp   迭代器   pre   pytho   while   for   生成器   ati   

原文地址:https://www.cnblogs.com/frankruby/p/10023404.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!