python如何判断类型
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python如何判断类型相关的知识,希望对你有一定的参考价值。
参考技术A python中是可以判断对象的类型的,判断python中的对象类型,可以使用isinstance()函数。isinstance是Python中的一个内建函数。是用来判断一个对象的变量类型。函数语法格式为
isinstance(object, class-or-type-or-tuple)
如果参数object是classinfo的实例,或者object是classinfo类的子类的一个实例, 返回True。如果object不是一个给定类型的的对象, 则返回结果总是False。
例如
>>> isinstance(1, int)
True
>>> isinstance(1.0, float)
True
Python Boolean类型 判断
and 判断非Boolean类型数据会自动转换类型
"A" and "B" → "B"
因为表达式 A 和 B都为True所以返回 "B"
"A" is True → False
因为这里判断的"A": str类型,而True为Boolean类型所以不相等
bool("A") is True → True
这里将"A"装换为Boolean类型后就可以判断成功了
所以得出结论 and 关键字在做数据判断时会将其装换为Boolean类型后,再进行判断
以下是官方定义的False对象
Truth Value Testing
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. 1All 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如何判断类型的主要内容,如果未能解决你的问题,请参考以下文章