class EvanWilliam:
def __init__(self):
self.name = "Evan William"
self.location = "Indonesia 🇮🇩"
self.role = "Software Developer"
self.education = "Informatics Engineering @ UKWMS"
self.status = "Student & Developer"
def current_focus(self):
return [
"🧙♂️ Machine Learning Engineering",
"📜 Data Science & Analytics",
"🏰 Full-Stack Development"
]
def tech_stack(self):
return {
"languages": ["Python", "JavaScript",
"C++", "PHP", "SQL"],
"specialties": ["AI/ML", "Data Analysis",
"Web Development"],
"mindset": "Continuous Learning"
}
def philosophy(self):
return "Innovation through code ⚔️"
# Initialize Developer
evan = EvanWilliam()
print(evan.philosophy()) |
|
|
|
|
|
|
|