blob: fd61cfd7646199c4438343861894701dd1aebc2d [file]
def func(seq):
...
newlist = reduce(lambda x, y: (x+y)/y, seq)
...