Python: filtering lists by indices February 17, 2023 by Tarik I don’t know any method to do it. But you could use a list comprehension: >>> [aList[i] for i in myIndices]