Table of Contents

How to Find Even Odd in python

Example of Find Even Odd in python
x=int(input("Enter No. :"))
if (x%2==0):
 print("even")
else:
 print("odd")