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
[–] InEnduringGrowStrong@sh.itjust.works 57 points 10 months ago (4 children)

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

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

Also 0 and empty strings

[–] bleistift2@feddit.de 30 points 10 months ago

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

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

results = list(filter(None, results))

[–] LostXOR@kbin.social 3 points 10 months ago (1 children)

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

[–] naught@sh.itjust.works 22 points 10 months ago (1 children)
[–] LostXOR@kbin.social 3 points 10 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 10 months ago

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