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", "UI/UX Design"]
self.current_learning = "Phase 1 of MSA"
def welcome(self):
message = (f"Hello, I'm {self.name}! " +
f"I am a {self.status} of {self.studied} and currently in progress doing {self.current_learning}. " +
"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.