1、使用print直接输出类型信息
print(type("小新"))
print(type(2023))
print(type(2023.09))
输出结果:
<class 'str'>
<class 'int'>
<class 'float'>
str(string的缩写)为字符串,int为整数,float浮点型
2、使用变量存储type()语句的结果
string_type = type("小新")
int_type = type(2023)
float_type = type(2023.09)
print(string_type)
print(int_type)
print(float_type)
输出结果:
<class 'str'>
<class 'int'>
<class 'float'>
3、使用type()语句,查看变量中存储的数据类型信息
name = "小新"
name_type = type(name)
print(name_type)
输出结果:
<class 'str'>
变量有类型吗?
总结