如何在 Python 中使用布尔值?

How do I use a Boolean in Python?(如何在 Python 中使用布尔值?)
本文介绍了如何在 Python 中使用布尔值?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

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

Does Python actually contain a Boolean value? I know that you can do:

checker = 1
if checker:
    #dostuff

但我很迂腐,喜欢在 Java 中看到布尔值.例如:

But I'm quite pedantic and enjoy seeing booleans in Java. For instance:

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

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

Is there such a thing as a Boolean in Python? I can't seem to find anything like it in the documentation.

推荐答案

checker = None 

if some_decision:
    checker = True

if checker:
    # some stuff

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

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

Your code works too, since 1 is converted to True when necessary. Actually Python didn't have a boolean type for a long time (as in old C), and some programmers still use integers instead of booleans.

这篇关于如何在 Python 中使用布尔值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)