Python type() 函数

实例

返回这些对象的类型:

  1. a = ('apple', 'banana', 'cherry')
  2. b = "Hello World"
  3. c = 55
  4. x = type(a)
  5. y = type(b)
  6. z = type(c)
  7. print(x)
  8. print(y)
  9. print(z)

定义和用法

type() 函数返回指定对象的类型。


语法

  1. type(object, bases, dict)
参数值
参数描述
object必需。如果仅设置一个参数,则 type() 函数将返回此对象的类型。
bases可选。规定基类。
dict可选。规定带有类定义的名称空间。

分类导航