class base: def __init__(self): self.x = [1, 2, 3] class child1(base): def __init__(self): super().__init__() def __r