Python program to Count Even and Odd Numbers in a List

numbers = (1, 2, 3, 4, 5, 6, 7, 8, 9) # Declaring the tuple
count_odd = 0
count_even = 0
for x in numbers:
        if not x % 2:
    	     count_even+=1
        else:
    	     count_odd+=1
print("Number of even numbers :",count_even)
print("Number of odd numbers :",count_odd)

OUTPUT:

Number of even numbers : 4
Number of odd numbers : 5 

Sharing Is Caring

Leave a Comment