class ComputerScienceStudent:
def __init__(self):
self.name = "Prerana M P"
self.university = "PES University"
self.year = "3rd Year"
self.major = "Computer Science"
self.location = "Bengaluru, India"
self.currently_learning = ["Generative AI", "Machine Learning", "Data Science"]
def say_hi(self):
print("Thanks for dropping by! Let's build something amazing together 🚀")
me = ComputerScienceStudent()
me.say_hi()⭐️ From prerana2005


