小码哥的IT人生

Python type() 函数

Python基础 2022-06-06 14:36:35小码哥的IT人生shichen

Python type() 函数

实例

返回这些对象的类型:

a = ('apple', 'banana', 'cherry')
b = "Hello World"
c = 55
x = type(a)
y = type(b)
z = type(c)

完整实例:

a = ('apple', 'banana', 'cherry')
b = "Hello World"
c = 55
x = type(a)
y = type(b)
z = type(c)
print(x)
print(y)
print(z)

定义和用法

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

语法

type(object, bases, dict)

参数值

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

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024