ASSIGNMENT
Q.1
Q.1 Write a Python program to check whether multiple numbers are Even or Odd.
n = int(input("How many numbers? ")) for i in range(n): num = int(input("Enter number :- ")) if num % 2 == 0: print(f"{num} is Even") else: print(f"{num} is Odd")


