# docstrings

class MyDoctor:
    '''-> MyDoctor class docstring ... tell programmers about your class.'''     
    
    def sayHi(self):
        print("Hi!")

    def sayBye(self):
        '''-> sayBye() docstring ...'''
        print("Bye")

    def askDocQuestion(self):
        question = input("Do you want a health tip? Yes or no.")

        #if yes, python says: Good! Eat less sugar.
        #if !yes, Ok, see you next time.

        if str(question.lower()[0]) == "y" or 1:
            print("Good! Eat less sugar.")
        else:
            print("Ok, see you next time.") 

myDoctor = MyDoctor()

print(myDoctor)
# print(myDoctor.sayBye.__doc__)

#myDoctor.sayHi()
myDoctor.askDocQuestion()
myDoctor.sayBye()





