Created
October 27, 2016 16:17
-
-
Save zahidhasanemon/b2ef8fd38e36a517e959b2f83da5a54f 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
| number = int(raw_input("enter a number: ")) | |
| if number % 2 == 0: | |
| if number % 4 ==0: | |
| print "%s is an even number and multiple of 4" %number | |
| else: | |
| print "%s is an even number" %number | |
| else: | |
| print "%s is an odd number" %number |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment