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)
布尔表达式– 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’
点击加载更多评论>>