class Shivam:
def __init__(self):
self.name = "Shivam Gupta"
self.role = "Data Science & ML Enthusiast"
self.education = "B.Tech CSE Student"
self.club = "FOSS Club Coordinator"
self.languages = ["Python", "C++", "Java", "C"]
self.interests = ["Machine Learning", "Deep Learning", "Open Source", "AI"]
self.goal = "Turn data into insights & build a future in AI π"
def say_hi(self):
print("Thanks for stopping by! Let's build something amazing together.")
me = Shivam()
me.say_hi()Β