Computer Science, asked by nishavincent2304, 5 months ago

Write a program for taking n numbers as arguments in the python function and print they are odd or even.
Write down the full python function.​

Answers

Answered by Ashe70
2

Answer:

Python Code:

num = int(input("Enter a number: ")) mod = num % 2 if mod > 0: print("This is an odd number. ") else: print("This is an even number. ... Enter a number: 5 This is an odd number.

Explanation:

pls mark as brainliest

Similar questions