class AboutMe:
def __init__(self):
self.name = "Nicole Fabian"
self.status = "Recent Graduate"
self.studied = "Software and Web Development"
self.location = "Auckland, New Zealand"
self.languages_spoken = {"Tagalog": "native", "English": "fluent"}
self.interests = ["Web Development", "Software Testing", "UI/UX Design"]
self.hobbies = ["reading", "playing video games with friends"]
def welcome(self):
message = (f"Hello, I'm {self.name}! "
f"I am a {self.status} of {self.studied} and currently exploring career opportunities. "
f"I love {', '.join(self.hobbies)}. "
"Thank you for visiting :)")
print(message)
me = AboutMe()
me.welcome()
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.