Computer Science, asked by ashokkumar3c2, 3 months ago

write a indented and documented program in python for the following to enter a number and check whether it is even or odd

Answers

Answered by Anonymous
4

Answer:

hello,

Explanation:

#python program to enter a number and check whether it is even or odd

n=int(input("enter the number"))

if n%2==0:

   print("the number entered is even")

else:

   print("the number entered is odd")

hope it helps you

please mark brainliest

@ItzSnowySecret07

Similar questions