class AboutMe:
def __init__(self, name, age, location, born):
self.name = name
self.age = age
self.current_location = location
self.origin = born
self.welcome = """
I like to write code and learn new things in my free time.
Feel free to look through my projects.
- More to come soon!
"""
def get_info(self):
return {
"name": self.name,
"age_during_last_edit": self.age,
"location": self.current_location,
"originally_from": self.origin
}
def __str__(self):
return self.welcome
me = AboutMe("Marc", 22, "UK", "ES")
print(me)
print(me.get_info())
🎯
Focusing
Recent Computer Science graduate from the University of York
Highlights
- Pro
Popular repositories Loading
-
-
-
-
Bedwars-Stats-Bot-Discord
Bedwars-Stats-Bot-Discord PublicBedwars Stats Bot for discord developed in python 3.7.5
Python
-
-
discord_crypto_alert
discord_crypto_alert PublicDiscord bot used to track all Bitcoin, Ethereum and XRP transactions over 500k
Python
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.