I have a tuple of tuples and I want to put the first value in each of the tuples into a set. I thought using map() would be a good way of doing this the only thing is I can't find an easy way to access the first element in the tuple. So for example I have the tuple ((1,), (3,)). I'd like to do something like set(map([0], ((1,), (3,)))) (where [0] is accessing the zeroth element) to get a set with 1 and 3 in it. The only way I can figure to do it is to define a function: def first(t): return t[0]. Is there anyway of doing this in one line without having to declare the function?
|
|
|||
|
Use a list comprehension:
|
|||
|
|
While the list comprehensions are generally more readable, itemgetter is closest to what he asked for. Timing information:
|
|||||
|
If there are more items in your tuples you might save some memory and time using izip and islice. |
|||
|
|
|
You can use a set comprehension in Python 2.7 and 3.x:
or in Python < 2.7:
|
|||
|
|
|
Go with @Winston. List comprehensions are great. If you really want to use map, use a lambda as previously suggested, or the logically equivalent...
This is just for info; You should use the list comp |
|||
|
|
|
Python supports the creation of anonymous function using the
This is equivalent to:
But as other people have said, list comprehensions are preferred over the use of map. |
|||||||||
|

lambda x: x[0]. – Skurmedel May 13 '11 at 23:51