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")) # 加上引号后变成字符串了
评论 (0)