gpt4 book ai didi

python - 如何在 Python 中使用 boolean 值?

转载 作者:IT老高 更新时间:2023-10-28 21:07:15 25 4
gpt4 key购买 nike

Python 是否真的包含 boolean 值?我知道你可以这样做:

checker = 1
if checker:
#dostuff

但我很迂腐,喜欢在 Java 中看到 boolean 值。例如:

Boolean checker;
if (someDecision)
{
checker = true;
}
if(checker)
{
//some stuff
}

Python 中是否有 boolean 值之类的东西?我似乎在文档中找不到类似的东西。

最佳答案

checker = None 

if some_decision:
checker = True

if checker:
# some stuff

[编辑]

更多信息:http://docs.python.org/library/functions.html#bool

您的代码也可以工作,因为必要时 1 会转换为 True。实际上 Python 很久没有 boolean 类型了(就像在旧的 C 中一样),一些程序员仍然使用整数而不是 boolean 值。

关于python - 如何在 Python 中使用 boolean 值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1748641/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com