Computer Science, asked by hritik559063, 1 year ago

Program to input all list then count how many even element are there in Python​

Answers

Answered by Anonymous
1

here is your answer ⤵️

# Python program to count Even

# and Odd numbers in a List

# list of numbers

list1 = [10, 21, 4, 45, 66, 93, 1]

even_count, odd_count = 0, 0

# iterating each number in list

for num in list1:

# checking condition

if num % 2 == 0:

even_count += 1

else:

odd_count += 1

print("Even numbers in the list: ", even_count )

print("Odd numbers in the list: ", odd_count)

output :

Even numbers in the list: 3

Odd numbers in the list: 4

__hope it help ✌️

Similar questions