或运算假假输出后一个假吧?
a = 'python' #a为真True
print 'hello,', a or 'world' #a为真,或运算world为假得出结果python(或运算中一方为真即为真)
#输出结果为:hello, python
b = '' #空字串符默认为False假
print 'hello,', b or 'world' #b为假,或运算world为假,得出结果world(或运算假假得最后一个假)
#输出结果为:hello, world
请问老师,我这么理解对吗?还有第二个world我理解为假,对吗?