Class Fabian(Human):
def __init__(self):
super().__init__()
self.name = "Fabian"
self.job = "Software Developer"
self.languages = ["dart", "psql", "python", "javascript"]
self.hobbies = ["code", "sleep", "eat"]
@staticmethod
def answerYourQuestion(yourQuestion):
"""
:return Answer to your Question
"""
answer = Fabian.thinkAbout(yourQuestion).getAnswer()
return answer
def __del__(self):
Fabian.death()