Given a list of unsorted numbers, I want to find the smallest number larger than N (if any).

In C#, I'd do something like this (checks omitted) :

var x = list.Where(i => i > N).Min();

What's a short, READABLE way to do this in Python?

link|improve this question

1  
What do you mean by "READABLE"? – S.Lott Jul 19 '10 at 14:55
@SLott "read·a·ble/ˈrēdəbəl/: (2) Easy or enjoyable to read." What do you mean by "What do you mean by readable?" ? – Cristi Diaconescu Jul 21 '10 at 14:40
feedback

4 Answers

up vote 18 down vote accepted
>>> l = [4, 5, 12, 0, 3, 7]
>>> min(x for x in l if x > 5)
7
link|improve this answer
lowercase ell is not a good choice for a variable name – Marius Gedminas Jul 19 '10 at 18:22
@Marius: have you actually downvoted me for this? – SilentGhost Jul 19 '10 at 20:29
feedback
min(x for x in mylist if x > N)
link|improve this answer
feedback

Other people have given list comprehension answers. As an alternative filter is useful for 'filtering' out elements of a list.

min(filter(lambda t: t > N, mylist))
link|improve this answer
1  
using filter is a little bit slower than using generator expressions – Xavier Combelle Jul 19 '10 at 14:47
+1. I've asked this question partly to improve my Python skills, so this answer serves my purpose quite well. – Cristi Diaconescu Jul 21 '10 at 14:38
feedback
x = min(i for i in mylist if i > N)
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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