I have a list of indices, something like:
b=[0,2]
and a list of elements:
a = ['elem0','elem1','elem2']
I need a list that is composed of the elements in a with the indices in b
(in this example: ['elem0','elem2'])
|
I have a list of indices, something like:
and a list of elements:
I need a list that is composed of the elements in |
||||
|
|
|
Use a list comprehension:
|
|||||
|
|
Or:
|
|||
|
|
|
Use a list comprehension to map the indexes to the list:
|
|||
|
|
Look up "list comprehensions" in the python manual if you don't know them. |
|||
|
|