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.
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
results = [result for result in results if result != None]
Should be
is not None
(:You're right, though IIRC there's no functional difference when comparing to None (other than speed).
Yes there is. One invokes
__ne__
on the left hand side, the other performs an identity comparison.