共计 180 个字符,预计需要花费 1 分钟才能阅读完成。
可以使用 type() 函数来查看变量的类型。例如:
x = 5
print(type(x)) # 输出:<class 'int'>
y = 3.14
print(type(y)) # 输出:<class 'float'>
z = "hello"
print(type(z)) # 输出:<class 'str'>
你可以根据需要将变量名替换为你自己定义的变量来查看其类型。
丸趣 TV 网 – 提供最优质的资源集合!
正文完