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", "c/c++"]
self.language_forgot = ["java",]
self.database_learnt = ["postgres"]
self.framework_learning = ["django", "tkinter", "fastapi"]
self.planning_to_learn = ["go", "Js"]
def say_bye(self):
print("I hope you have a nice day.")
me = computer_science_student()
me.say_bye()