摘要: ```python class Foo: def __init__(self,n): self.n = n def __iter__(self): return self def __next__(self): if self.n == 15: raise StopIteration('终止了') ... 阅读全文
posted @ 2018-09-16 21:01 空林~~清风~~~ 阅读(144) 评论(0) 推荐(0)