1500字范文,内容丰富有趣,写作好帮手!
1500字范文 > Python 布尔类型 bool

Python 布尔类型 bool

时间:2018-10-02 13:28:36

相关推荐

Python 布尔类型 bool

python 中布尔值使用常量True 和 False来表示;注意大小写

比较运算符< > ==等返回的类型就是bool类型;布尔类型通常在 if 和 while 语句中应用

这边需要注意的是,python中,bool是int的子类(继承int),故True==1 False==0是会返回Ture的,有点坑,如要切实判断用xxx is True

print(True==1) # 返回Trueprint(False==0) # 返回Trueprint(1 is True)print(0 is False)

另外,还有几个坑。。。 如,Python2中True/False不是关键字,因此我们可以对其进行任意的赋值;同理,Python 中 if(True) 的效率远比不上 if(1)

True = "True is not keyword in Python2" # Python2 版本中True False不是关键字,可被赋值,Python3中会报错

另,由于bool是int,可进行数字计算 print(True+True)

True or False 判定

以下会被判定为 False :

NoneFalsezero of any numeric type, for example, 0, 0.0, 0j.any empty sequence, for example, '', (), [].any empty mapping, for example, {}.instances of user-defined classes, if the class defines a __bool__() or __len__() method, when that method returns the integer zero or bool value False.

除了以上的,其他的表达式均会被判定为 True,这个需要注意,与其他的语言有比较大的不同。

'''遇到问题没人解答?小编创建了一个Python学习交流QQ群:778463939寻找有志同道合的小伙伴,互帮互助,群里还有不错的视频学习教程和PDF电子书!'''print(bool())print(bool(False))print(bool(0),bool(0.0),bool(0j))print(bool(""),bool(()),bool([]),bool({}))class alfalse():def __bool__(self): # 定义了 __bool__() 方法,始终返回Falsereturn Falsef = alfalse()print(bool(f))class alzero():def __len__(self): # 定义了 __len__() 方法,始终返回0return 0zero = alzero()print(bool(zero))class justaclass():passc = justaclass()print(bool(c))# 一般class instance都返回为True

布尔运算符 and or not

注意均为小写:and or not; 注意布尔运算的优先级低于表达式,not a == b相当于not (a == b), 若a == not b就会有语法错误

print((True and False),(False and False),(True and True))print((True or False),(False or False),(True or True))print((not True),(not False))print( 1>1 and 1<1 ) # 表达式优于bool运算 相当于 print( (1>1) and (1<1) )print( (1>1 and 1)<1)# 加括号了,值就不一样了print(True and 1)# True and 数字,不建议这么使用,返回的是数字print(True and 111)print(False and 2) # False and 数字,返回Falseprint(not 1==1)T = TrueF = False# print(T == not F) # 会报错print(T == (not F)) # 需加括号

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。