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
- Import "django.shortcuts" could not be resolved from source in Django Project
- How to add two numbers in Android Studio? | Source Code
- FindViewByID returns null in android studio -SOLVED
- Saving changes is not permitted in SQL SERVER - [SOLVED]
- Restore of database failed. File cannot be restored over the existing. -[SOLVED]
- One or more projects in the solution were not loaded correctly in Visual Studio 2019 | FIXED
- How to find Laptop's Battery Health?
- SOLVED-Related Field got invalid lookup: icontains error in Django
Related Article