type(数据) 用来测试数据的类型

不管是什么类型变量,加上引号的都会变成字符串

Python学习笔记之type函数测试类型-米宝教室
type函数判断数据类型
'''
不同类型的数据的type函数测试结果
'''


a = 1
print(type(a))
print(type(1))
b = 3.14
print(type(b))
print(type(3.14))
c = ''
print(type(c))
print(type(''))
d = 'hello'
print(type(d))
print(type('d'))    
print(type("hello"))
f = True
print(type(f))
print(type(True))   # 没加引号的还是布尔
print(type("True")) # 加上引号后变成字符串