Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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'])

share|improve this question

4 Answers

up vote 8 down vote accepted

Use a list comprehension:

[a[i] for i in b]
share|improve this answer
1  
a little embarressed not figuring this out by myself... – Boaz Aug 10 '11 at 13:39

Or:

from operator import itemgetter

b=[0,2]
a = ['elem0','elem1','elem2']

print itemgetter(*b)(a)
>>> ('elem0','elem2')
share|improve this answer

Use a list comprehension to map the indexes to the list:

b=[0,2]
a = ['elem0','elem1','elem2'] 

sublist = [a[i] for i in b]
share|improve this answer
>ipython
In [1]: b=[0,2]
In [2]: a = ['elem0','elem1','elem2']
In [3]: [a[i] for i in b]
Out[3]: ['elem0', 'elem2']

Look up "list comprehensions" in the python manual if you don't know them.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.