Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. # Conditional Operators
  2. # == equals
  3. # > greater than
  4. # < less than
  5. # >= greater than or equal to
  6. # <= less than or equal to
  7.  
  8. # Control Flow Statements
  9. age = int(input("What is your age? "))
  10.  
  11. if age < 19:
  12. print("You cannot enter the bar")
  13. else:
  14. print("You can enter the bar!")
  15. name = input("What is your name?")
  16. if name == "Jeremy":
  17. print("Welcome to the bar Jeremy! (Happy Birthday!)")
  18. elif name == "Antoine":
  19. print("Long time no see! Welcome back Antoine!")
  20. else:
  21. print("Welcome to the bar! I don't think you've been here before!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement