共计 230 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,type() 是一个内置函数,用于获取对象的类型。
type() 的语法为:
type(object)
其中,object 是要检查其类型的对象。
type() 函数的返回结果是一个 type 对象,表示对象的类型。
例如:
x = 5
print(type(x)) # <class‘int’>
y =“hello”
print(type(y)) # <class‘str’>
z = [1, 2, 3]
print(type(z)) # <class‘list’>
丸趣 TV 网 – 提供最优质的资源集合!
正文完