- True and True true
- False and True false
- 1 == 1 and 2 == 1 false
- "test" == "test" true
- 1 == 1 or 2 != 1 true
- True and 1 == 1 true
- False and 0 != 0 false
- True or 1 == 1 true
- "test" == "testing" false
- 1 != 0 and 2 == 1 false
- "test" != "testing" true
- "test" == 1 false
- not (True and False) true
- not (1 == 1 and 0 != 1) false
- not (10 == 1 or 1000 == 1000) false
- not (1 != 10 or 3 == 4) false
- not ("testing" == "testing" and "Zed" == "Cool Guy") true
- 1 == 1 and (not ("testing" == 1 or 1 == 0)) true
- "chunky" == "bacon" and (not (3 == 4 or 3 == 3)) false
- 3 == 3 and (not ("testing" == "testing" or "Python" == "Fun")) false
exercise28 布尔运算练习
Python布尔运算详解与练习
最新推荐文章于 2023-10-20 00:03:38 发布
本文介绍了Python中的布尔运算,包括and、or和not的使用。通过一系列的示例,展示了这些运算符如何判断条件真假,并提供了练习题供读者自我检验理解程度。
1万+

被折叠的 条评论
为什么被折叠?



