does this code run rule
does this code run rule
does this code run rule
You're viewing a single thread.
I mean this would remove False and None from a list though.
Also 0 and empty strings
And empty lists, tuples, dictionaries, sets, and strings
results = list(filter(None, results))
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.