class Profile:
def __init__(self):
self.name = ""
self.hobbies = ["Camp", "cooking", "Eating", "AstroPhotography"]
self.age = 20
def disp_profile(self):
return {
"name": self.name,
"hobbies": self.hobbies,
"age": self.age,
}
if __name__ == "__main__":
profile = Profile()
print(profile.disp_profile())| Most Used Languages | Contribution Streak |
|---|---|


