Created
August 11, 2016 10:16
-
-
Save dominik-hadl/2b812936a9002b906efd80b50eba8263 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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