Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@dominik-hadl
Created August 11, 2016 10:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dominik-hadl/2b812936a9002b906efd80b50eba8263 to your computer and use it in GitHub Desktop.
Save dominik-hadl/2b812936a9002b906efd80b50eba8263 to your computer and use it in GitHub Desktop.
points = int(input("Enter desired points: "))
if points > 1000 or points < 0:
if points > 1000:
print("Does fairplay mean something to you at all?")
else:
print("What was that supposed to mean? You want minus points or what?")
else if points == 300:
print("Here is " + str(300) + " points.")
else:
print("That would be unfair. Try again.")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment