1 2 3 4 5 6 7 8 9
class Fruit: def __init__(self): self.colors = ["red", "orange", "yellow"] def __getitem__(self, idx): return self.colors[idx] Fruit()[1]