千锋教育-做有情怀、有良心、有品质的职业教育机构

400-811-9990
手机站
千锋教育

千锋学习站 | 随时随地免费学

千锋教育

扫一扫进入千锋手机站

领取全套视频
千锋教育

关注千锋学习站小程序
随时随地免费学习课程

当前位置:北京千锋IT培训  >  技术干货  >  Python技术干货  > Python中布尔表达式练习

Python中布尔表达式练习

来源:千锋教育
发布人:wjy
时间: 2022-11-14 14:44:00

  在 Python 中,用于存储真值和假值的类型称为 bool,以英国数学家 George Boole(乔治·布尔)的名字命名。George Boole 创建了布尔代数,它是所有现代计算机算术的基础。

Python中布尔表达式练习

  布尔值只有两个,分别是 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

  

Python中布尔表达式练习1

注:本文部分文字和图片来源于网络,如有侵权,请联系删除。版权归原作者所有!此页面下方声明无效!

 

声明:本站稿件版权均属千锋教育所有,未经许可不得擅自转载。

猜你喜欢LIKE

用Python预测世界杯决赛最后的赢家,没想到准确率还挺高!!

2023-01-07

Python模式匹配与正则表达式

2022-11-07

python基础-面向对象编程

2022-11-07

最新文章NEW

总结了30段极简的Python代码!

2023-01-07

20个非常有用的Python单行代码

2022-11-15

Python中的可变对象与不可变对象

2022-11-14

相关推荐HOT

快速通道 更多>>

最新开班信息 更多>>

网友热搜 更多>>