可能看起来是一个非常微不足道的问题,但我很好奇,并给出:
foo = {1: 'one', 2: 'two'}
是否有理由偏爱以下两种方法中的任何一种?
if not 3 in foo:
print 'bar'
if 3 not in foo:
print 'bar'
可能看起来是一个非常微不足道的问题,但我很好奇,并给出:
foo = {1: 'one', 2: 'two'}
是否有理由偏爱以下两种方法中的任何一种?
if not 3 in foo:
print 'bar'
if 3 not in foo:
print 'bar'