Saturday, January 16, 2021

Python program for finding whether the given number is an odd or an even number

 n = int(input("Enter a number:"))

if n % 2 == 0:

    print(n, "is an even number")

else:

    print(n, "is an odd number")

No comments:

Post a Comment

Can’t Read Books? Try This 5-Minute Habit Instead (It Actually Works)

Can’t Read Books? Try This 5-Minute Habit Instead (It Actually Works)   Hi, namaste Krishna. So, um today I'll be sharing a very good ha...