为了账号安全,请及时绑定邮箱和手机立即绑定

在Python的If语句中使用布尔值

在Python的If语句中使用布尔值

呼如林 2021-03-17 17:15:35
我有一些带有if语句的代码,条件之一是布尔值。但是,CodeSkulptor说“第36行:TypeError:BitAnd不支持的操作数类型:'bool'和'number'”。如果可以的话请帮忙。这就是这段代码的样子。(我只是更改了所有变量名以及if语句执行的内容)thing1 = Truething2 = 3if thing2 == 3 & thing1:   print "hi"
查看完整描述

2 回答

?
慕姐4208626

TA贡献1852条经验 获得超7个赞

您想使用逻辑and(不是&,不是Python中按位AND运算符):


if thing2 == 3 and thing1:

   print "hi"

因为您使用过&,所以错误弹出,说:


TypeError: unsupported operand type(s) for BitAnd: 'bool' and 'number'

                                                                       ^^^^^^


查看完整回答
反对 回复 2021-03-23
?
胡说叔叔

TA贡献1804条经验 获得超8个赞

&是按位AND运算符。您想使用逻辑and代替:


if thing2 == 3 and thing1:

    print "hi"


查看完整回答
反对 回复 2021-03-23
  • 2 回答
  • 0 关注
  • 544 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信