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

I am a python newbie trying to achieve the following:

I have a list of lists:

lst = [[567,345,234],[253,465,756, 2345],[333,777,111, 555]]

I want map lst into another list containing only the second smallest number from each sublist. So the result should be:

[345, 465, 333]

For example if I were just interested in the smallest number, I could do:

map(lambda x: min(x),lst)

I wish I could do this:

map(lambda x: sort(x)[1],lst)

but sort does not chain. (returns None)

neither is something like this allowed:

map(lambda x: sort(x); x[1],lst) #hence the multiple statement question

Is there a way to do this with map in python but without defining a named function? (it is easy with anonymous blocks in ruby, for example)

share|improve this question

4 Answers

up vote 26 down vote accepted

There are several different answers I can give here, from your specific question to more general concerns. so from most specific to most general:

Q. Can you put multiple statements in a lambda?

A. No. But you don't actually need to use a lambda. You can put the statements in a def instead. ie:

def second_lowest(l):
    l.sort()
    return l[1]

map(second_lowest, lst)

Q. Can you get the second lowest item from a lambda by sorting the list?

A. Yes. As alex's answer poinst out, sorted() is a version of sort that creates a new list, rather than sorting in-place, and can be chained. Note that this is probably what you should be using - it's bad practice for your map to have side effects on the original list.

Q. How should I get the second lowest item from each list in a sequence of lists.

A. sorted(l)[1] is not actually the best way for this. It has O(N log(N)) complexity, while an O(n) solution exists. This can be found in the heapq module.

>>> import  heapq
>>> l = [5,2,6,8,3,5]
>>> heapq.nsmallest(l, 2)
[2, 3]

So just use:

map(lambda x: heapq.nsmallest(x,2)[1],  list_of_lists)

It's also usually considered clearer to use a list comprehension, which avoids the lambda altogether:

[heapq.nsmallest(x,2)[1] for x in list_of_lists]
share|improve this answer
1  
+1: You don't need a lambda. – S.Lott May 14 '09 at 10:13
I don't think you're right about the O(n) solution being found in the heapq module. All you're doing there is heap sorting the list, which is O(n log n) and then finding the smallest elements. – avpx Dec 3 '12 at 20:52
The documentation (docs.python.org/2/library/heapq.html#heapq.nsmallest) does indeed warn that using heapq.nsmallest() may be less efficient than just using sorted(), so only measurements can tell which solution is fastest in your case. heapq.nsmallest() does however have a complexity of O(k * log(n) + n) I think, with n the length of the list and k the number of smallest items you wish to extract. O(n) to heapify the list and k times O(log(n)) to pop k items. This is better than O(n * log(n)), especially for small k. – Vortexfive Apr 26 at 13:26

Use sorted function, like this:

map(lambda x: sorted(x)[1],lst)
share|improve this answer
ah.Thanks.(what a descriptive name for the function!) Still curious about the multiple statement within lambda part. Possible? – bagheera May 14 '09 at 9:44
1  
Nope, "functions created with lambda forms cannot contain statements". docs.python.org/reference/expressions.html#lambda – alex vasi May 14 '09 at 9:46
-1: lambda and map instead of list comprehensions? Not very pythonic. – nikow May 14 '09 at 9:56

Or if you want to avoid lambda and have a generator instead of a list:

(sorted(col)[1] for col in lst)

share|improve this answer

Using begin() from here: http://www.reddit.com/r/Python/comments/hms4z/ask_pyreddit_if_you_were_making_your_own/c1wycci

Python 3.2 (r32:88445, Mar 25 2011, 19:28:28) 
[GCC 4.5.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> lst = [[567,345,234],[253,465,756, 2345],[333,777,111, 555]]
>>> begin = lambda *args: args[-1]
>>> list(map(lambda x: begin(x.sort(), x[1]), lst))
[345, 465, 333]
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.