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'
|
I have a list:
How do I filter it to get only the integers from it?? I tried map(int, x) but it gives error.
| |||
|
feedback
|
| |||
|
feedback
|
|
Use list comprehension
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. | |||||
feedback
|