标签: python
我收到TabError:在我的python程序中一致地在缩进中使用制表符和空格。 这是我的程序:
class myiter2: def __iter__(self): self.num = 1 return self def __next__(self): num=self.num self.num = num+2 return num