课程
/后端开发
/Python
/初识Python
为什么我在命令提示符里面输入 print 'hello,' or a or 0 输出的是hello,print 'hello,' or a and 0 出来是hello(不该是0吗?)
2016-07-04
源自:初识Python 3-9
正在回答
按照从优先级最高到最低的顺序,布尔运算符有:Not、And、Or、Xor、Eqv 和 Imp。
print 'hello,' or a and 0
1. a and 0 --> 0
2. 'hello,' or 0 --> 'hello,'
weibo_喵喵喵喵喵到底有多少_03593603 提问者
街頭霸王洗髮水 回复 weibo_喵喵喵喵喵到底有多少_03593603 提问者
0 false
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序