# adarsh.py
class DataScientist:
def __init__(self):
self.name = "Adarsh"
self.role = ["Data Analyst", "Data Scientist"]
self.focus = ["Exploratory Data Analysis", "Machine Learning", "Data Visualization"]
self.tools = ["Python", "SQL", "Tableau", "Power BI", "Scikit-learn"]
self.current_goal = "Building ML pipelines that scale & insights that matter"
self.superpower = "Turning messy data into clear, actionable stories π"
def say_hello(self):
print(f"Hello World! I'm {self.name} π")
print(f"Mission: {self.superpower}")
adarsh = DataScientist()
adarsh.say_hello()
|
|
|
|


