class Planet(): galaxy = 'Milky Way' def __init__(self) -> None: self.galaxy = 'Andromeda' mars = Planet() del mars.galaxy print(mars.galaxy) # ??