# 方式一使用print直接输出类型信息
print(type("吱昂张"))
print(type(666))
print(type(18.2))
# 方式二使用变量存储type()语句的结果
string_type = type("吱昂张")
int_type = type(999)
float_type = type(13.2435)
print(string_type)
print(int_type)
print(float_type)
# 方式三使用type()语句,查看变量中存储的数据类型信息
name = "吱昂张"
name_type = type(name)
print(name_type)
运行结果如下:
?