Python.__getitem__方法

Python的魔法方法__getitem__ 可讓對象實現迭代功能,這樣就可使用for...in... 來迭代該對象了python class Animal: def __init__(self, animal_list): self.animals_name = animal_list animals = Animal(["dog","cat","fish"]) for
相關文章
相關標籤/搜索