Getting started
API Reference
Examples
Sum a sequence of lists.
lst (Sequence[list]) – The sequence of lists to obtain the summation.
sum of lst, i.e. if lst = [list1, list2, ...], then l_sum = list1 + list2 + ....
lst = [list1, list2, ...]
l_sum = list1 + list2 + ...
list