class Student:
def __init__(self):
self.name = "MElisoltanov"
self.role = "Computer Science Student"
self.focus = "Web Development"
self.learning = ["Full-Stack", "Database Design", "Best Practices"]
self.motto = "Code, Learn, Repeat 🔄"
def say_hi(self):
print("Thanks for dropping by! Let's build something amazing together.")
me = Student()
me.say_hi()- 🔨 Building web applications from scratch
- 📚 Diving deep into full-stack development
- 🗄️ Mastering database design and SQL
- 🎯 Writing clean, maintainable code