| def examples():
|
| func_list = [1,2,3,4]
|
| list_res = [5,8,1]
|
| # So i want to access list_tes from the following cycle. But i need list_res index..which is not on enumerate
|
| for idx,func in enumerate(func_list):
|
| lst_tes [idx] = something
|