共计 229 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,可以使用 type() 函数来查看数据的类型。
例如:
x = 5
print(type(x)) # 输出:<class 'int'>
y = "Hello"
print(type(y)) # 输出:<class 'str'>
z = [1, 2, 3]
print(type(z)) # 输出:<class 'list'>
通过调用 type() 函数并传入要查看类型的变量,即可获取该变量的数据类型。
丸趣 TV 网 – 提供最优质的资源集合!
正文完