Advertisement
KaySawbridge

Match commentary

Aug 2nd, 2020
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.39 KB | None | 0 0
  1. #Match commentry
  2. goals = int(input("How many goals were scored at the match today? "))
  3. if goals == 0:
  4.     print ("Wow that must have been a boring game :(")
  5. elif goals <=2:
  6.     print ("The game can't have been very interesting")
  7. elif goals <=5:
  8.     print ("The game had some amazing highlights!")
  9. else:
  10.     print ("Fantasitc game, amazing play!")
  11. print ("Thanks, see you at next week's match")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement