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(input("Whats your favorite number?" +'\n')) | |
| divide = number % 2 | |
| if(divide == 0): | |
| print("your number is even") | |
| else: | |
| print("your number is odd") | |
| check = number % 4 | |
| if(check == 0): |