.--.-. .- -.. ...- .- .. - .... / -.- .-. .. ... .... -. .- / .- -.- .- / .- -.. -.- .- ..--- ----- ----- -....
class AdvaithKrishna:
def __init__(self):
self.name = "Advaith Krishna"
self.alias = "ADKA2006"
self.role = "Aspiring AI Engineer & Data Enthusiast"
self.education = "CSE (AI) @ Amrita Vishwa Vidyapeetham"
self.interests = ["Coding", "AI", "Data Science", "Problem Solving"]
self.email = "advaithkrishna06@gmail.com"
self.pronouns = "He/Him"
def say_hello(self):
print(f"Hey there! I'm {self.name}, passionate about AI and coding!")
me = AdvaithKrishna()
me.say_hello()


