Python bool() 函数

Posted 程序先生

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python bool() 函数相关的知识,希望对你有一定的参考价值。

描述

bool() 函数用于将给定参数转换为布尔类型,如果没有参数,返回 False。每组词 www.cgewang.com

bool 是 int 的子类。

语法

以下是 bool() 方法的语法:

class bool([x])

参数

  • x -- 要进行转换的参数。

返回值

返回 True 或 False。


实例

以下展示了使用 bool 函数的实例:

>>>bool() False >>> bool(0) False >>> bool(1) True >>> bool(2) True >>> issubclass(bool, int) # bool 是 int 子类 True

以上是关于Python bool() 函数的主要内容,如果未能解决你的问题,请参考以下文章

Operator '||' cannot be applied to operands of type 'bool?' and 'bool?'(代码片段

代码片段 - Golang 实现集合操作

[python][原创]python函数怎么对int或者bool进行引用传递

在Python中什么样的对象布尔(bool)值为False,什么样的对象布尔(bool)值为True可以用内置函数bool()判断对象的布尔值

Python内置函数之bool()

Python bool() 函数