I have a list:

['Jack', 18, 'IM-101', 99.9]

How do I filter it to get only the integers from it??

I tried

map(int, x) but it gives error.

ValueError: invalid literal for int() with base 10: 'Jack'

link|improve this question
feedback

2 Answers

up vote 5 down vote accepted
>>> x = ['Jack', 18, 'IM-101', 99.9]
>>> [e for e in x if isinstance(e, int)]
[18]
link|improve this answer
thx, i should have used a list comprehension – James I Dec 5 '10 at 7:46
feedback

Use list comprehension

>>> t = ['Jack', 18, 'IM-101', 99.9]
>>> [x for x in t if type(x) == type(1)]
[18]
>>> 

map(int, x) throws an error

map function applies int(t) on every element of x.

This throws an error because int('Jack') will throw an error.

[Edit:]

Also isinstance is purer way of checking that it is of type integer, as sukhbir says.

link|improve this answer
Some might argue that using isinstance is more explicit than comparing type s for equality. IMO it's a toss-up. – Karl Knechtel Dec 5 '10 at 7:36
@Karl Knechtel: No, issues. You are right. I just pulled a fast one. I just wanted to tell that list comprehension is the way to do it and also show him why using map throws an error. – pyfunc Dec 5 '10 at 7:41
feedback

Your Answer

 
or
required, but never shown

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