python 布尔值 bool( ) 与逻辑运算符
逻辑运算符
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
print(1 and 2) print(0 and 2) print(2 and 3)
#运行结果
2
0
3
数字转换布尔值
print(bool(1)) print(bool(0)) print(bool(2))
#运行结果
True
False
True
本文作者:Lyvin.zhang
本文链接:https://www.cnblogs.com/stationing/p/9162625.html
版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 2.5 中国大陆许可协议进行许可。
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步