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

196

16442 readers
2620 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
[–] InEnduringGrowStrong@sh.itjust.works 59 points 11 months ago (4 children)

I mean this would remove False and None from a list though.

[–] lugal@sopuli.xyz 38 points 11 months ago

Also 0 and empty strings

[–] bleistift2@feddit.de 31 points 11 months ago

And empty lists, tuples, dictionaries, sets, and strings

[–] joyjoy@lemm.ee 24 points 11 months ago* (last edited 11 months ago)

results = list(filter(None, results))

[–] LostXOR@kbin.social 4 points 11 months ago (1 children)

results = [result for result in results if result != None]

[–] naught@sh.itjust.works 22 points 11 months ago (1 children)
[–] LostXOR@kbin.social 3 points 11 months ago (1 children)

You're right, though IIRC there's no functional difference when comparing to None (other than speed).

[–] AVincentInSpace@pawb.social 9 points 11 months ago

Yes there is. One invokes __ne__ on the left hand side, the other performs an identity comparison.