My name's
Nadeem.
I'm a self-taught computer science student
#!/usr/bin/python
class computer_science_student:
def __init__(self):
self.role = "Backend developer"
self.language_learnt = ["python"]
self.database_learnt = ["postgres"]
self.framework_learning = ["django", "frappe", "fastapi"]
self.planning_to_learn = ["Js"]
def say_bye(self):
print("I hope you have a nice day.")
me = computer_science_student()
me.say_bye()