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
- How to create custom 404 error page in Django?
- Requested setting INSTALLED_APPS, but settings are not configured. You must either define..
- ValueError:All arrays must be of the same length - Python
- Check hostname requires server hostname - SOLVED
- How to restrict access to the page Access only for logged user in Django
- Migration admin.0001_initial is applied before its dependency admin.0001_initial on database default
- Add or change a related_name argument to the definition for 'auth.User.groups' or 'DriverUser.groups'. -Django ERROR
- Addition of two numbers in django python
Related Article