bool类型
>>> bool(250)True
>>> bool("假")
True
>>> range(0)
range(0, 0)
>>> bool(range(0))
False
>>> 3 and 4
4
>>> 4 or 5
4
>>> "FishC" and "LOVE"
'LOVE'
>>> True + False
1
>>> True - False
1
>>> True * False
0
>>> False / True
0.0
>>> True / False
Traceback (most recent call last):
File "<pyshell#11>", line 1, in <module>
True / False
ZeroDivisionError: division by zero False=0,不能除以0
比如1/0就不行 sfqxx 发表于 2023-2-26 21:59
False=0,不能除以0
比如1/0就不行
是的
页:
[1]