You must log in or register to comment.
It does! it takes a list (or other iterator) and filters out all values that are cast to boolean True. The same could be archived with
results = list(filter(bool, results))
It would filter out values that cast to False, no?
Like None, 0, “”, …
i wasn’t sure how to phrase it, it keeps all values that cast to True, and discards all that cast to False