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:

Pictorial Presentation of 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:

Even 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.
Python: Tips of the Day
Print Imported Modules:
import sys imported_modules = [m.__name__ for m in sys.modules.values() if m]
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join
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