因为Python把0、空字符串''和None看成 False,其他数值和非空字符串都看成 True,所以:print 'hello,', a or 'world'的打印结果是a;hello,python。print 'hello,', b or 'world'的打印结果是:hello,world。
1 回答
举报
0/150
提交
取消
因为Python把0、空字符串''和None看成 False,其他数值和非空字符串都看成 True,所以:print 'hello,', a or 'world'的打印结果是a;hello,python。print 'hello,', b or 'world'的打印结果是:hello,world。
2014-10-23
举报