Created
February 28, 2021 15:34
-
-
Save cristinelpopescu/8415f6c73b586000d449247140a4ecc4 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 = float(input('enter a number ')) | |
if (A % 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