全国旗舰校区

不同学习城市 同样授课品质

北京

深圳

上海

广州

郑州

大连

武汉

成都

西安

杭州

青岛

重庆

长沙

哈尔滨

南京

太原

沈阳

合肥

贵阳

济南

下一个校区
就在你家门口
+
当前位置:首页  >  技术干货  >  Python技术干货  >  详情

Python中布尔表达式练习

来源:千锋教育
发布人:wjy
2022-11-14

推荐

在线提问>>

  在 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

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

 

相关文章

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

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

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

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

Python中布尔表达式练习

开班信息 更多>>

课程名称
全部学科
咨询

HTML5大前端

Java分布式开发

Python数据分析

Linux运维+云计算

全栈软件测试

大数据+数据智能

智能物联网+嵌入式

网络安全

全链路UI/UE设计

Unity游戏开发

新媒体短视频直播电商

影视剪辑包装

游戏原画

    在线咨询 免费试学 教程领取