mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
9 lines
116 B
Python
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]) |