class UMercadal:
def __init__(self):
self.name = "Ulysse Mercadal"
self.age = 20
self.role = "3rd year C.S. student"
self.education = "Epitech Lyon and Paris"
self.languages = ["French", "English"]
self.interests = ["Solo traveling", "code", "mountain sports"]
def get_info(self):
info = f"π Hi, I'm {self.name}!\n"
info += f"π¨βπ» I'm a {self.age}-year-old {self.role}.\n"
info += f"π Currently studying at {self.education}.\n"
info += f"π I can fluently communicate in {', '.join(self.languages)}.\n"
info += f"π‘ My interests include: {', '.join(self.interests)}."
return info
UMercadal = UMercadal()
print(UMercadal.get_info())