vote up 4 vote down star
3

I have a list in Python, and I want to check if any elements are negative. Specman has the has() method for lists which does:

x: list of uint;
if (x.has(it < 0)) {
    // do something
};

Where it is a Sspecman keyword mapped to each element of the list in turn.

I find this rather elegant. I looked through the Python documentation and couldn't find anything similar. The best I could come up with was:

if (True in [t < 0 for t in x]):
    # do something

I find this rather inelegant. Is there a better way to do this in Python?

flag

fixed the title :-) – Nathan Fellman Aug 27 at 17:55
OK, deleted my comment. – Peter Mortensen Aug 27 at 17:58

3 Answers

vote up 21 vote down check

any():

if any(t < 0 for t in x):
    # do something

Also, if you're going to use "True in ...", make it a generator expression so it doesn't take O(n) memory:

if (True in (t < 0 for t in x)):
link|flag
Beat me to it by 18 seconds. Yes, any() is the correct answer here. – Daniel Pryden Aug 27 at 17:40
4  
On the simple questions you have to be fast and lucky to get da points. :-) – Ken Aug 27 at 17:40
1  
If it's that simple maybe I should add a newbie tag to this :-) – Nathan Fellman Aug 27 at 17:41
vote up 10 vote down

Use any().

if any(t < 0 for t in x):
    # do something
link|flag
+1 for having the correct answer, only 18 seconds too late. – Michael Deardeuff Aug 27 at 19:53
vote up 5 vote down

Python has a built in any() function for exactly this purpose.

link|flag
2.5+ only. Otherwise you have to make a function, maybe using ifilter and exceptions, or bool(set((x for x if cond))) or the like. – Gregg Lind Sep 1 at 3:57

Your Answer

Get an OpenID
or

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