Files
2019-07-08 18:05:36 +03:00

9 lines
116 B
Python

def foo(lst):
a = 1
res = map(lambda x: x + a + 1, lst)
return list(res)
a = 2
x = fo<caret>o([1, 2])