Advertisement
hagenpastebin

Untitled

Dec 8th, 2019
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. question1 = input("Who is the first President of the United States? > ")
  2. if question1 == "george washington" or question1 == "Washington" or "washington":
  3. print("Correct")
  4. else:
  5. print("Incorrect")
  6. question2 = input("Who is the current President of the United States? > ")
  7. if question2 == "Donald Trump" or question2 == "Trump":
  8. print("Correct and very precise")
  9. else:
  10. print("Incorrect")
  11. question3 = input("Who is the host of the Tonight Show? > ")
  12. if question3 == "Jimmy Falon" or question3 == "Jimmy" or "jimmy":
  13. print("Correct")
  14. else:
  15. print ("Incorrect")
  16. print("Thank You for playing")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement