In this tutorial I will show you how to calculate the sum of odd and even numbers in Python.
CODE:
#Sum of even & odd numbersnumbers=[14,55,72,62,87,64,20]evenTotal=0oddTotal=0for number in numbers:if(number % 2== 0):evenTotal += numberelse:oddTotal += numberprint("The sum of Even Numbers=", evenTotal)print("The sum of Odd Numbers=", oddTotal)
Explanation:
We're going to use a for loop to iterate and to calculate the sum of even and odd numbers. So we have to define the variable as evenTotal & oddTotal and set it to 0.
For each iteration check if the number is divisible by 2 with no remainder, then it is even and add it the variable evenTotal. If it leaves a remainder 1 then the number is odd and then add it to the variable oddTotal.
The plus is the assignment operator is used to adding the total of all even and odd numbers. After our for loop. This totalOdd, totalEven variables has the total of all even and odd numbers. we can simply print it here.
cmd:python example.py
OUTPUT:
The sum of Even Numbers= 232
The sum of Odd Numbers= 142
Post your comments / questions
Recent Article
- Fix-Gradient effect turning to gray in after effects
- How to blur an image in python?
- ModuleNotFoundError: No module named 'whois' in Python GoviralHost Without Terminal
- How to Convert Image to Pencil Sketch in Python?
- AttributeError: module 'urllib' has no attribute 'request' - Python
- How to Extract audio from video files using python?
- PermissionError: [Errno 13] Permission denied: 'shampoo_sales.csv' - Python
- [WinError 145] The directory is not empty: 'FolderPath' - Python
Related Article