1 type()函数
type()函数是Python内置的函数之一,它用于获取一个对象的数据类型。
一般语法如下:
type(object)
其中,object是您要检查其类型的变量或对象。type()函数将返回一个表示对象类型的类型对象。
2 使用方式
(1)在print语句中,直接输出类型信息:
print(type("博主非常帅"))
print(type(666))
print(type(11.234))
结果如下:
(2)用变量存储type()的结果(返回值)
string_type = type("博主非常帅")
int_type = type(666)
float_type = type(11.345)
print(string_type)
print(int_type)
print(float_type)
结果如下:
(3)查看变量中存储的数据类型
name = "博主非常帅"
name_type = type(name)
print(name_type)
结果如下:
3 总结
type()查看的是:变量存储的数据的类型。因为,变量无类型,但是它存储的数据有。