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
Popular repositories Loading
-
-
-
-
discord_crypto_alert
discord_crypto_alert PublicDiscord bot used to track all Bitcoin, Ethereum and XRP transactions over 500k
Python
-
PirateDucks
PirateDucks PublicForked from booksaw/PirateDucks
ENG1 Assessment 1 - Game in Java (using Libgdx) with Website
Java
-
spice_traders
spice_traders PublicForked from booksaw/spice_traders
ENG1 Project Section 1 - Spice Traders
Java
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.


