为什么我注释,结果显示运行错误
a = 'python'
print 'hello,', a or 'world'
# a=Turn,world=False,所以计算结果为a
b = 'world'
print 'hello,', b or 'world'
# b=False,world=False,所以计算结果为b
a = 'python'
print 'hello,', a or 'world'
# a=Turn,world=False,所以计算结果为a
b = 'world'
print 'hello,', b or 'world'
# b=False,world=False,所以计算结果为b
2020-07-14
举报