this post was submitted on 22 Nov 2023
294 points (100.0% liked)

196

16293 readers
37 users here now

Be sure to follow the rule before you head out.

Rule: You must post before you leave.

^other^ ^rules^

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] itslilith@lemmy.blahaj.zone 13 points 10 months ago* (last edited 10 months ago) (1 children)

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))
[–] kakes@sh.itjust.works 12 points 10 months ago (2 children)

It would filter out values that cast to False, no?

[–] lugal@sopuli.xyz 4 points 10 months ago

Like None, 0, "", ...

[–] itslilith@lemmy.blahaj.zone 2 points 10 months ago

i wasn't sure how to phrase it, it keeps all values that cast to True, and discards all that cast to False