本身寫一個迭代器,而後重寫list類,即MyList類,實現部分和list同樣的特性

先直接貼代碼,並附加了詳細註釋web '''示意可迭代對象的定義''' class MyList: '''將此類改成可迭代對象''' def __init__(self, iterable): self.data = [x for x in iterable] return None # __init__不返回或者只能返回None def
相關文章
相關標籤/搜索