mirror of
https://github.com/zrax/pycdc.git
synced 2026-06-23 11:34:07 +00:00
5 lines
122 B
Python
5 lines
122 B
Python
def map_with_index(func, lst):
|
|
res = []
|
|
for i, x in enumerate(lst):
|
|
res.append(func(i, x))
|
|
return res
|