可以使用type()函数来查看变量的类型。例如:
x = 5 print(type(x)) # 输出:<class 'int'> y = 3.14 print(type(y)) # 输出:<class 'float'> z = "hello" print(type(z)) # 输出:<class 'str'>
你可以根据需要将变量名替换为你自己定义的变量来查看其类型。