码迷,mamicode.com
首页 > 编程语言 > 详细

python 布尔值 bool( ) 与逻辑运算符

时间:2018-06-10 15:18:15      阅读:290      评论:0      收藏:0      [点我收藏+]

标签:逻辑运算符   返回   优先   IV   div   pre   否则   false   逻辑运算   

逻辑运算符

not

and

or

运算符优先级

not > and >or

printer(x or y)  x为非零,则返回x,否则返回y

print(1 or 2)
print(3 or 2)
print(0 or 1)
print(0 or 3)

#打印结果
1
3
1
3

printer(x and y)  x为非零,则返回y,x为零,则返回x

printer(1 and 2)

printer(0 and 2)

printer(2 and 3)

#运行结果

2

0

3

数字转换布尔值

printer(bool(1))

printer(bool(0))

printer(bool(2))

#运行结果

True

False

True

 

python 布尔值 bool( ) 与逻辑运算符

标签:逻辑运算符   返回   优先   IV   div   pre   否则   false   逻辑运算   

原文地址:https://www.cnblogs.com/stationing/p/9162625.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!