Python Continued Lesson 2 – Predict
Study the code below: answer = input(“How are you today? Good/OK/Bad”) if answer == “Good”: print(“Great to hear it!”) elif answer == “OK”: print(“Average day this, is it?”) elif answer == “Bad”: print(“Sorry you’re unhappy”) else: print(“You didn’t answer correctly”)
Python Continued Lesson 2 – Predict Read More »