How to implement a cumulative sum of numbers from a list in Python

1 Answer

0 votes
def accumulate(lst):
    sm = 0
    for i in lst:
        sm += i
        yield sm

lst = [0, 1, 2, 3, 4, 5, 6]

sum_lst = list(accumulate(lst))
# 0 : 0+1=1 : 0+1+2=3 : 0+1+2+3=6 : 0+1+2+3+4=10 : 0+1+2+3+4+5=15 ...
    
print(sum_lst)




'''
run:

[0, 1, 3, 6, 10, 15, 21]

'''

 



answered May 25, 2019 by avibootz

Related questions

...