.--.-. .- -.. ...- .- .. - .... / -.- .-. .. ... .... -. .- / .- -.- .- / .- -.. -.- .- ..--- ----- ----- -....
- Hi, I’m Advaith Krishna aka ADKA2006
- I’m interested in coding and working with data.
- I’m currently learning CSE(AI) at Amrita Vishwa Viyapeetham
- How to reach me mail-id:[email protected]
- Pronouns: He/Him
# Importing Libraries
from life import Coding, AI, DataScience, ProblemSolving
# Defining Myself
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, DataScience, ProblemSolving]
self.email = "[email protected]"
def say_hello(self):
print(f"Hey there! I'm {self.name}, passionate about AI and coding!")
def current_focus(self):
return [
"Exploring AI & Machine Learning",
"Building cool projects with Python",
"Mastering Data Science & Analytics"
]
def tech_stack(self):
return {
"Languages": ["Python", "Java", "C++","HTML","CSS3"],
"Frameworks": ["TensorFlow", "PyTorch","OpenCV"],
"OS": ["Linux", "Windows"],
"Tools": ["Git", "Docker", "VS Code"]
}
# Execution
me = AdvaithKrishna()
me.say_hello()
print("Current Focus:", me.current_focus())
print("Tech Stack:", me.tech_stack())