Tagged Questions
6
votes
9answers
2k views
How do I efficiently filter computed values within a Python list comprehension?
The Python list comprehension syntax makes it easy to filter values within a comprehension. For example:
result = [x**2 for x in mylist if type(x) is int]
Will return a list of the squares of ...