Python/ref func type

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python type()函数

❮内置功能

返回这些对象的类型:

    a = ('apple', 'banana', 'cherry')
b = "Hello World"
c = 33

x = 
    type(a)
y = type(b)
z = type(c)

定义和用法

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

句法

    type(object, 
    bases, dict)
  

参数值

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

❮内置功能