关于布尔运算
a = 'python' print 'hello,', a or 'world' hello,python#根据或运算法则,如果a是Ture,则整个结果必定为True;且a为非空字符串,所以得出结果为TRUE,就近返回a。 b = '' print 'hello,', b or 'world' hello,world.#在该或运算中,因为b是Flase,所以计算结果取决于""world". 但是我有个疑惑: a="" b=0 print a or b 得出的是什么?有人回答了请艾特我。