会员
周边
众包
新闻
博问
闪存
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Python学习
人生苦短,我用python
博客园
首页
新随笔
联系
订阅
管理
2023年3月3日
Python实现迭代器(__next__和__iter__)
摘要: 一、简单示例 死循环 class Foo: def __init__(self, x): self.x = x def __iter__(self): return self def __next__(self): self.x += 1 return self.x f = Foo(3) for i
阅读全文
posted @ 2023-03-03 16:15 Python探索牛
阅读(62)
评论(0)
推荐(0)
编辑
公告