# in Python class# you cannot define multiple constructorsclass Man: def __init__(self, name, country="unknown"): self.name = name self.country = countryman = Man("Vladimir", "Russia")print(man.name)print(man.country)