mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
8 lines
101 B
Plaintext
8 lines
101 B
Plaintext
def func2(x, y):
|
|
return (x+y)/y
|
|
|
|
def func(seq):
|
|
...
|
|
newlist = reduce(func2, seq)
|
|
...
|