Python program to check whether the given number is Even or Odd
So today we are going to write a Python program to check whether the given number is even or odd. Logic: If number is completely divisible by 2 with remainder 0 then it is and even number otherwise the number is odd. As you must be aware ” % ” modulus is used to … Read more