导语:
本文主要介绍了关于python如何判断对象的类型的相关知识,包括python对象,以及python 判断变量类型这些编程知识,希望对大家有参考作用。
如果你只有第一个参数,则 type() 函数返回对象的类型,并为三个参数返回新类型对象。与之类似的还有 isinstance() 函数,但两者有一定的区别。
(推荐教程:
)
isinstance() 与 type() 区别:
type() 不将子类视为超类类型,无论继承如何。
isinstance() 会认为子类是一种父类类型,考虑继承关系。
如果要判断两个类型是否相同推荐使用 isinstance()。
语法:
type(object)
type(name, bases, dict)
代码实现:
# 一个参数实例
>>> type(1)
<type 'int'>
>>> type('phpcn')
<type 'str'>
>>> type([2])
<type 'list'>
>>> type({0:'zero'})
<type 'dict'>
>>> x = 1
>>> type( x ) == int # 判断类型是否相等True
# 三个参数
>>> class X(object):
... a = 1
...
>>> X = type('X', (object,), dict(a=1)) # 产生一个新的类型 X
>>> X
<class '__main__.X'>
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 安装后如何运行python11/01
- ♥ python的官网是什么09/12
- ♥ 如何在python中导入tkinter11/14
- ♥ python算法有用吗?01/03
- ♥ python列表切片规则是什么?怎么做?10/29
- ♥ Python中的rad是什么意思?10/15
内容反馈