Hey I’m Chris!

class Chris:
    self.occupation = "DevOps Engineer"
    self.traits     = ["Tech Lover", "Heavy Sleeper"]
    
    self.likes = [
        "drinking coffee",
        "the occasional bit of gaming",
        "setting up random stuff on my teeny tiny homelab",
        "binge watching YouTube"
    ]

    def current_status(self):
        # When I'm not doing any of those things...
        return "Posting here, albeit, not very often."

me = Chris()
print(me.current_status())