位置:首页 > 软件操作教程 > 编程开发 > Python > 问题详情

python的布尔表达式怎么写?

提问人:杨紫红发布时间:2020-11-26

布尔表达式– and, or, not


if b >= a and b <= c:

print ‘bool is True’


if not (b < a or c > c):

  print ‘not expr, value is True’

继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部