Take a 2d list. I want to make a new list with only the ith element from each list. What is the best way to do this?

I have:

 map(lambda x: x[i], l)

Here is an example

 >>> i = 0
 >>> l = [[1,10],[2,20],[3,30]]
 >>> map(lambda x: x[i], l)
 [1, 2, 3]
link|improve this question
feedback

1 Answer

up vote 4 down vote accepted

Use list comprehension:

i = 1
data = [[1,10],[2,20],[3,30]]
result = [d[i] for d in data]  # [10, 20, 30]

Also see this question on list comprehension vs. map.

link|improve this answer
or to fit into the original question result = [x[i] for x in l] – James Khoury May 5 '11 at 0:17
FYI A list comprehension is more highly optimized than map. – jathanism May 5 '11 at 0:51
feedback

Your Answer

 
or
required, but never shown

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