kingthrillgore to [email protected] • 1 year agodoes this code run rulelemmy.mlimagemessage-square40fedilinkarrow-up1281arrow-down13
arrow-up1278arrow-down1imagedoes this code run rulelemmy.mlkingthrillgore to [email protected] • 1 year agomessage-square40fedilink
minus-squareLostXORlinkfedilink4•1 year agoresults = [result for result in results if result != None]
minus-squareLostXORlinkfedilink2•1 year agoYou’re right, though IIRC there’s no functional difference when comparing to None (other than speed).
minus-square@[email protected]linkfedilinkEnglish9•1 year agoYes there is. One invokes __ne__ on the left hand side, the other performs an identity comparison.
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.