x = 10
print(x)
"""type(变量名) 表示查看这个变量代表的数据的类型"""
print(type(x)) # <class 'int'>
w = -1997
print(type(w)) # <class 'int'>
z = 10*10
print(type(z)) # <class 'int'>
x = 10
print(x)
"""type(变量名) 表示查看这个变量代表的数据的类型"""
print(type(x)) # <class 'int'>
w = -1997
print(type(w)) # <class 'int'>
z = 10*10
print(type(z)) # <class 'int'>