Created
May 4, 2016 06:46
-
-
Save rjshekar90/d5fdb5e48e1395cb49a01a3a0a778fb4 to your computer and use it in GitHub Desktop.
# Odd or Even
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
# -*- coding: utf-8 -*- | |
# Odd or Even | |
no = int(raw_input("Enter the number >>> ")) | |
if no % 2 == 0: | |
print "It is a even number" | |
else: | |
print "It is odd number" | |
if no % 4 == 0: | |
print "It is a multiple of 4" | |
else: | |
print "Not a multiple of 4" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment