class DataScientist:
def __init__(self):
self.name = "Faysal Al Mahmud"
self.role = "Data Science Student"
self.location = "Bangladesh π§π©"
self.current_focus = [
"π Learning Data Science",
"π Mastering Python",
"π Data Visualization",
"π€ Machine Learning"
]
self.dream = "Solving real-world problems with data"
def say_hi(self):
print("Thanks for visiting my profile! π")
me = DataScientist()
me.say_hi()
|
|
|
graph LR
A[π Complete DS Course] --> B[π οΈ Build 5+ Projects]
B --> C[π Get Certified]
C --> D[πΌ Land First Role]
D --> E[π Data Scientist]
style A fill:#ff9999
style B fill:#66b3ff
style C fill:#99ff99
style D fill:#ffcc99
style E fill:#ff99cc
