"""
当我们定义一个变量的时候,我们变量当中存储的数据是可以改变
a = 10
b = "张三"
c = True
d = False
我们可以使用type来检测一下这个数据类型
"""
a = 10
b = 1.2
c = "你好"
d = '20'
e = True
f = False
print(a,type(a))
print(b,type(b))
print(c,type(c))
print(d,type(d))
print(e,type(e))
print(f,type(f))
"""
当我们定义一个变量的时候,我们变量当中存储的数据是可以改变
a = 10
b = "张三"
c = True
d = False
我们可以使用type来检测一下这个数据类型
"""
a = 10
b = 1.2
c = "你好"
d = '20'
e = True
f = False
print(a,type(a))
print(b,type(b))
print(c,type(c))
print(d,type(d))
print(e,type(e))
print(f,type(f))