Check whether number even or odd in Python Leave a Comment / Python Programs / By brcinstitute111@gmail.com View All Python Programs Source Code num=int(input(“Enter the number : “))if num%2==0: print(“Even number”)else: print(“Odd Number”) Output Enter the number : 22Even number View All Python Programs