class Developer:
def __init__(self):
self.name = "Prabhas Gorusu"
self.location = "Kakinada, India π"
self.current_work = "Building cool stuff with code"
self.learning = ["Cloud Architecture", "System Design"]
self.fun_fact = "I can solve Rubik's cube in < 2 mins! π²"
def say_hi(self):
print("Thanks for dropping by! Let's build something awesome together π")
me = Developer()
me.say_hi()Made with π by Prabhas Gorusu