We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2c70e23 + 5e38336 commit 8682a38Copy full SHA for 8682a38
even.py
@@ -0,0 +1,5 @@
1
+num = int(input("Enter a number: "))
2
+if (num % 2) == 0:
3
+ print("{0} is Even".format(num))
4
+else:
5
+ print("{0} is Odd".format(num))
0 commit comments