up vote 2 down vote favorite
share [g+] share [fb]

Using python 2.6 is there a way to check if all the items of a sequence equals a given value, in one statement?

[pseudocode]
my_sequence = (2,5,7,82,35)

if all the values in (type(i) for i in my_sequence) == int:
     do()

instead of, say:

my_sequence = (2,5,7,82,35)
all_int = True
for i in my_sequence:
    if type(i) is not int:
        all_int = False
        break

if all_int:
    do()
link|improve this question

77% accept rate
Can somebody edit this so that "my_squence" is spelled consistently throughout? my_squence != my_sequence Thanks. – Sean Jan 1 '09 at 23:55
feedback

3 Answers

up vote 11 down vote accepted

Use:

all( type(i) is int for i in lst )

Example:

In [1]: lst = range(10)
In [2]: all( type(i) is int for i in lst )
Out[2]: True
In [3]: lst.append('steve')
In [4]: all( type(i) is int for i in lst )
Out[4]: False

[Edit]. Made cleaner as per comments.

link|improve this answer
2  
you can leave out the list comprehension! a simple generator expression will be sufficient (and more efficient). – hop Jan 1 '09 at 22:00
@hop: can comments be voted up? like yours. :) – JV. Jan 1 '09 at 22:07
When comparing types, always use "is"! – Benjamin Peterson Jan 1 '09 at 23:44
feedback

Do you mean

all( type(i) is int for i in my_list )

?

Edit: Changed to is. Slightly faster.

link|improve this answer
@ S.Lott: thinking negation, will any( type(i) != int for i in my_lst ) be more efficient? or the same over an average number of cases? – JV. Jan 1 '09 at 22:05
Both any and all are efficient, meaning the stop iterating once they find a True or False value respectively. – tzot Jan 1 '09 at 23:08
@JV: all == and any != are the same over an average number of cases. – S.Lott Jan 1 '09 at 23:30
feedback

I would suggest:

if all(isinstance(i, int) for i in my_list):

all and any first appeared in Python 2.5. If you're using an older version of Python, the links provide sample implementations.

I also suggest using isinstance since it will also catch subclasses of int.

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.