Python – Sum of different length Lists of list
Last Updated :
08 May, 2023
Getting the sum of list is quite common problem and has been dealt with and discussed many times, but sometimes, we require to better it and total sum, i.e. including those of nested list as well. Let’s try and get the total sum and solve this particular problem.
Method #1 : Using list comprehension + sum() We can solve this problem using the list comprehension as a potential shorthand to the conventional loops that we may use to perform this particular task. We just iterate and sum the nested list and at end return the cumulative sum using sum function.
Python3
test_list = [[ 1 , 4 , 5 ], [ 7 , 3 ], [ 4 ], [ 46 , 7 , 3 ]]
print ("The original list : " + str (test_list))
res = sum ([ele for sub in test_list for ele in sub])
print ("The total element sum in lists is : " + str (res))
|
Output :
The original list : [[1, 4, 5], [7, 3], [4], [46, 7, 3]]
The total element sum in lists is : 80
Time Complexity: O(n),The above code iterates through the list once, hence the time complexity is linear, i.e. O(n).
Space Complexity: O(n),The algorithm uses an additional list to store the result, thus consuming linear space which is O(n).
Method #2 : Using chain() + sum() This particular problem can also be solved using the chain function instead of list comprehension in which we use the conventional sum function to check the sum.
Python3
from itertools import chain
test_list = [[ 1 , 4 , 5 ], [ 7 , 3 ], [ 4 ], [ 46 , 7 , 3 ]]
print ("The original list : " + str (test_list))
res = sum ( list (chain( * test_list)))
print ("The total element sum in lists is : " + str (res))
|
Output :
The original list : [[1, 4, 5], [7, 3], [4], [46, 7, 3]]
The total element sum in lists is : 80
Time Complexity: O(n) where n is the number of elements in the string list. The chain() + sum() is used to perform the task and it takes O(n) time.
Auxiliary Space: O(1) constant additional space is required.
Method #3 : Using numpy.sum() and numpy.flatten()
Note: Install numpy module using command “pip install numpy”
Python3
import numpy as np
test_list = [[ 1 , 4 , 5 ], [ 7 , 3 ], [ 4 ], [ 46 , 7 , 3 ]]
print ( "The original list : " + str (test_list))
res = np. sum (np.concatenate([np.array(sublist) for sublist in test_list]))
print ( "The total element sum in lists is : " + str (res))
|
Output:
The original list : [[1, 4, 5], [7, 3], [4], [46, 7, 3]]
The total element sum in lists is : 80
Time Complexity: O(n) where n is the total number of elements in the nested list
Auxiliary Space : O(n) for storing the concatenated array.
Method #4: Using reduce() from functools module
Python3
from functools import reduce
test_list = [[ 1 , 4 , 5 ], [ 7 , 3 ], [ 4 ], [ 46 , 7 , 3 ]]
print ( "The original list : " + str (test_list))
res = reduce ( lambda x,y: x + y, [ele for sub in test_list for ele in sub])
print ( "The total element sum in lists is : " + str (res))
|
Output
The original list : [[1, 4, 5], [7, 3], [4], [46, 7, 3]]
The total element sum in lists is : 80
Time complexity: O(N), where N is the total number of elements in all sub-lists of test_list.
Auxiliary space complexity: O(N), as we create a new list with all the elements from the sub-lists using list comprehension, and then pass it to reduce().
Method #5 : Using sum() and extend() methods
Approach
- Convert the nested list to single list using extend(),for loop and store in x
- Find the sum of x using sum() and store in res
- Display res
Python3
test_list = [[ 1 , 4 , 5 ], [ 7 , 3 ], [ 4 ], [ 46 , 7 , 3 ]]
print ( "The original list : " + str (test_list))
x = []
for i in test_list:
x.extend(i)
res = sum (x)
print ( "The total element sum in lists is : " + str (res))
|
Output
The original list : [[1, 4, 5], [7, 3], [4], [46, 7, 3]]
The total element sum in lists is : 80
Time Complexity : O(N) N – length of x
Auxiliary Space: O(1) since we are using single variable res to store sum
Similar Reads
Python | Interleave multiple lists of same length
When we interleave multiple lists, we mix the items from each list so that they alternate in a new sequence. This is often done when we have lists of the same length and want to combine them, with each item from each list appearing one after another. In this article, we will explore interleaving mul
2 min read
Python | Convert list of tuples to list of list
Converting list of tuples to list of lists in Python is a task where each tuple is transformed into list while preserving its elements. This operation is commonly used when we need to modify or work with the data in list format instead of tuples. Using numpyNumPy makes it easy to convert a list of t
3 min read
Python - Convert a list into tuple of lists
When working with data structures in Python, there are times when we need to convert a list into a tuple of smaller lists. For example, given a list [1, 2, 3, 4, 5, 6], we may want to split it into a tuple of two lists like ([1, 2, 3], [4, 5, 6]). We will explore different methods to achieve this co
3 min read
Iterate Over a List of Lists in Python
We are given a list that contains multiple sublists, and our task is to iterate over each of these sublists and access their elements. For example, if we have a list like this: [[1, 2], [3, 4], [5, 6]], then we need to loop through each sublist and access elements like 1, 2, 3, and so on. Using Nest
2 min read
Convert Set of Tuples to a List of Lists in Python
Sets and lists are two basic data structures in programming that have distinct uses. It is sometimes necessary to transform a collection of tuples into a list of lists. Each tuple is converted into a list throughout this procedure, and these lists are subsequently compiled into a single, bigger list
3 min read
Convert 1D list to 2D list of variable length- Python
The task of converting a 1D list to a 2D list of variable length in Python involves dynamically dividing a single list into multiple sublists, where each sublist has a different number of elements based on a specified set of lengths. For example, given a list [1, 2, 3, 4, 5, 6] and length specificat
4 min read
Python - Find maximum length sub-list in a nested list
In Python, we often work with nested lists (lists inside lists), and sometimes we need to find out which sub-list has the most items. In this article, we will explore Various methods to Find the maximum length of a sub-list in a nested list. Using max() Function with key=lenThe simplest and most eff
2 min read
Find sum and average of List in Python
In this article, we will explore various methods to find sum and average of List in Python. The simplest way to do is by using a built-in method sum() and len(). Using sum() and len()Python provides convenient built-in functions like sum() and len() to quickly calculate the sum and length of list re
2 min read
Python | Add list at beginning of list
Sometimes, while working with Python list, we have a problem in which we need to add a complete list to another. The rear end addition to list has been discussed before. But sometimes, we need to perform an append at beginning of list. Let's discuss certain ways in which this task can be performed.
5 min read
Python program to find sum of elements in list
In this article, we will explore various method to find sum of elements in list. The simplest and quickest way to do this is by using the sum() function. Using sum()The sum() function is a built-in method to sum all elements in a list. [GFGTABS] Python a = [10, 20, 30, 40] res = sum(a) print(res) [/
2 min read