a = 'python'
print('hello,'+ a or 'world')
b = ''
print('hello,'+ b or 'world')
第二个打印的结果不明白
(,)多一个空格(+)为直接链接,可能是直接显示hello+b了,没有判断or,把world放到前面也直接就显示了