w3resource

Python Exercise: Count the number of even and odd numbers from a series of numbers

Python Conditional: Exercise-6 with Solution

Write a Python program to count the number of even and odd numbers in a series of numbers

Pictorial Presentation of Even Numbers:

Even Numbers

Pictorial Presentation of Odd Numbers:

Odd Numbers

Sample Solution:

Python Code:

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)

Sample Output:

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

Flowchart:

Flowchart: Python program to count the number of even and odd numbers from a series of numbers

Even Numbers between 1 to 100:

Even Numbers between 1 to 100

Odd Numbers between 1 to 100:

Odd Numbers between 1 to 100

Visualize Python code execution:

The following tool visualize what the computer is doing step-by-step as it executes the said program:

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program that accepts a word from the user and reverse it.
Next: Write a Python program that prints each item and its corresponding type from the following list.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.

Python: Tips of the Day

Print Imported Modules:

import sys
imported_modules = [m.__name__ for m in sys.modules.values() if m]

 





We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook