Python list is nothing more than a collection of elements used to perform operations on a collection of values at the same time. So, you can easily perform any mathematical operation on a Python list as that is the main reason lists are used in Python. If you want to learn how to find the sum of items of a Python list, this article is for you. In this article, I will present a tutorial on how to find the sum of the elements of a Python list.
Sum of Elements of a Python List
Python has so many built-in functions that can be used to reduce the length of your code and increase the readability of your code at the same time. If you want to find the sum of the items of a list, Python has a sum() function for that. So if you want to find the sum of the elements of a list, you just need to use the sum() function over the list as shown in the code below:
a = [24, 25, 20, 30] print(sum(a))
99
In the code above, I first introduced a Python list, and then I have used the sum() function to find the sum of all the items in the list. Since a list is a collection of values, the sum() function takes the list as a collection of values and finds the sum of all the elements.
Summary
So this is how you can use the sum() function in Python to find the sum of elements of a list. Python has so many built-in functions that can be used to reduce the length of your code and increase the readability of your code at the same time. If you want to find the sum of the items of a list then using the sum() function will be the best choice. I hope you liked this article on how to find the sum of elements of a Python list. Feel free to ask your valuable questions in the comments section below.