Python中布尔表达式练习
在 Python 中,用于存储真值和假值的类型称为 bool,以英国数学家 George Boole(乔治·布尔)的名字命名。George Boole 创建了布尔代数,它是所有现代计算机算术的基础。
布尔值只有两个,分别是 True 和 False。一定要注意大小写,因为 true 和 false 并不是布尔值(记住,Python 是区分大小写的)。
True Or False:
print(True and True,'\n',
False and True,'\n',
1 == 1 and 2 == 1,'\n',
"test" and "test",'\n',
1 == 1 or 2 != 1,'\n',
True and 1 == 1,'\n',
False and 0 != 0,'\n',
True or 1 == 1,'\n',
"test" == "testing",'\n',
1 != 0 and 2 == 1,'\n',
"test" != "testing",'\n',
"test" == 1,'\n',
ot (True and False),'\n',
ot (1 == 1 and 0 != 1),'\n',
ot (10 == 1 or 1000 == 1000),'\n',
ot (1 != 10 or 3 == 4),'\n',
ot ("testing" == "testing" and "Zed" == "Cool Guy"),'\n',
1 == 1 and not ("testing" == 1 or 1 == 0),'\n',
"chunky" == "bacon" and not (3 == 4 or 3 == 3),'\n',
3 == 3 and not ("testing" == "testing" or "Python" == "Fun"))
执行结果如下:
C:\wok\venv\Scripts\python.exe C:/wok/venv/ex28.py
True
False
False
test
True
True
False
True
False
False
True
False
True
False
False
False
True
True
False
False
注:本文部分文字和图片来源于网络,如有侵权,请联系删除。版权归原作者所有!此页面下方声明无效!
猜你喜欢LIKE
相关推荐HOT
Python打印出变量
我们现在要键入更多的变量并且把它们打印出来。这次我们将使用一个叫“格式化字符串 (format string)”的东西. 每一次你使用 " 把一些文本引用...详情>>
2022-11-07 10:37:00Python中的可变对象与不可变对象
总结:对象可以分为 可变对象和不可变对象 可变对象:该对象所指向的内存中的值是可以被改变的,如:String、Tuple、Number。不可变对象:该对...详情>>
2022-11-07 10:26:00Python 2的结束意味着什么
Python 2的官方错误修复和安全补丁将停止更新。核心开发团队将不会修复Python 2解释器或Python 2标准库中新发现的问题。但是企业供应商仍可以自...详情>>
2022-11-07 10:24:00django扩展user用户字段inlines方式?
User为Django自带User表,需要关联详细信息表,类为UserBaseMsg(表名为user_base_msg)和另外一张表的员工状态信息,类为UserWorkMsg(表名为user...详情>>
2022-11-07 10:23:24