python中逻辑操作符

 

>>> 5 > 3 and 5 > 4
True
>>> 5 > 3 and 5 > 6
False
>>> 5 > 3 or 5 < 4
True
>>> 5 > 7 or 5 > 6
False
>>> not 0
True
>>> not 1
False
>>> not 2
False
>>> not 3
False

 

posted @ 2020-12-17 19:24  小鲨鱼2018  阅读(68)  评论(0编辑  收藏  举报