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