Created
October 28, 2018 22:51
-
-
Save GeorgeSeif/6f4fe9a519e343832ec1f7c01ccec175 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| a = 2000 | |
| if a > 1000: | |
| print("Big number!") | |
| elif a >= 500 and a < 1000: | |
| print("Medium number!") | |
| elif a >= 0 and a < 500: | |
| print("Small number!") | |
| else: | |
| print("Negative number!") | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment