Created
September 25, 2016 15:45
-
-
Save rnaeye/8324aa1b4919222d9a901e4c41a3eea3 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
number = int(input("Entr a number: ")) | |
print("Number you entered " + str(number) + ".") | |
if number % 2 == 0: | |
print ("Number is even.") | |
else: | |
print("Number is odd.") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment