Python type() 函数

描述

Python type() 函数如果你只有第一个参数则返回对象的类型,三个参数返回新的类型对象。

isinstance() 与 type() 区别:
  • type() 不会认为子类是一种父类类型,不考虑继承关系。
  • isinstance() 会认为子类是一种父类类型,考虑继承关系。
如果要判断两个类型是否相同推荐使用 isinstance()。

语法

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

  1. type(object)
  2. type(name, bases, dict)

参数

  • name:类的名称。
  • bases:基类的元组。
  • dict:字典,类内定义的命名空间变量。

返回值

一个参数返回对象类型, 三个参数,返回新的类型对象。

实例

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

  1. # 一个参数实例
  2. >>> type(1)
  3. <type 'int'>
  4. >>> type('school')
  5. <type 'str'>
  6. >>> type([2])
  7. <type 'list'>
  8. >>> type({0:'zero'})
  9. <type 'dict'>
  10. >>> x = 1
  11. >>> type( x ) == int # 判断类型是否相等
  12. True
  13. # 三个参数
  14. >>> class X(object):
  15. ... a = 1
  16. ...
  17. >>> X = type('X', (object,), dict(a=1)) # 产生一个新的类型 X
  18. >>> X
  19. <class '__main__.X'>

type() 与 isinstance()区别:

  1. class A:
  2. pass
  3. class B(A):
  4. pass
  5. isinstance(A(), A) # returns True
  6. type(A()) == A # returns True
  7. isinstance(B(), A) # returns True
  8. type(B()) == A # returns False