Check the Number is Even or Odd Python Program
In this program you can check the number which is input by user is Even or Odd.
- Code:
#Check the Number is even or odd
num=int(input('enter the number you want to check:'))
if(num%2==0):
print(num,'is Even No.')
else:
print(num,'is Odd No.')
- Click for image view👇
🙏THANKS FOR VISIT🙏
Check the Number is Even or Odd Python Program || CodexRitik
Reviewed by CodexRitik
on
June 23, 2020
Rating:
No comments: