摘要: 一、简单示例 死循环 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) 编辑