28 Program to find whether a no is even or odd in Python Atharva Satyendra Agrawal March 26, 2020 Atharva Satyendra Agrawal Program: #program to find whether a no is even or odd x=int(input("Enter a no:")) if(x%2==0): print(x,"is a Even no") else: print(x,"is a odd no") Output: Tweet Share Share Share Related Post