Self proclaimed CEO of Procrastination and Avid Python & C Enjoyer
from datetime import date
class AboutMe():
def __init__(self):
self.username = "WillyJL"
self.pronouns = ("he", "him")
self.location = "Italy" and "UK"
self.occupation = "Computer Science Student"
self.birthday = date(day=27, month=5, year=2003)
self.age = (date.today()-self.birthday).days/365 # 21 y/o
self.hobbies = ["Coding", "Gaming", "Music", "YouTube"]
self.interests = ["Programming", "Linux", "Open Source"]
self.hotel = "Trivago"
self.breed = "Different"
if __name__ == "__main__":
me = AboutMe()