我是靠谱客的博主 聪慧海燕,最近开发中收集的这篇文章主要介绍python中返回true,为什么类型在Python中返回True?,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Any object can be tested for truth value, for use in an if or while

condition or as operand of the Boolean operations below. The following

values are considered false:

None

False

zero of any numeric type, for example, 0, 0L, 0.0, 0j.

any empty sequence, for example, '', (), [].

any empty mapping, for example, {}.

instances of user-defined classes, if the class defines a

__nonzero__() or __len__() method, when that method returns the integer zero or bool value False. [1]

> All other values are considered true — so objects of many types are

always true.

Operations and built-in functions that have a Boolean result always

return 0 or False for false and 1 or True for true, unless otherwise

stated. (Important exception: the Boolean operations or and and always

return one of their operands.)

最后

以上就是聪慧海燕为你收集整理的python中返回true,为什么类型在Python中返回True?的全部内容,希望文章能够帮你解决python中返回true,为什么类型在Python中返回True?所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(27)

评论列表共有 0 条评论

立即
投稿
返回
顶部