diff --git a/Loops&Conditionals/ifEvenorOdd.py b/Loops&Conditionals/ifEvenorOdd.py index 3c71847..2d38708 100644 --- a/Loops&Conditionals/ifEvenorOdd.py +++ b/Loops&Conditionals/ifEvenorOdd.py @@ -2,6 +2,6 @@ num = int(input("Enter your number:")) #input takes a string value so it must be casted to int if (n&1): # ANDing with 1 checks if a number is odd , useful for large numbers - print("odd") + print("Odd") else: - print("even") + print("Even")