共计 235 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,可以使用 type() 函数来查看变量的类型。例如:
x = 5
print(type(x)) # <class 'int'>
y = 3.14
print(type(y)) # <class 'float'>
z = "Hello, world!"
print(type(z)) # <class 'str'>
上述代码中,通过使用 type() 函数,分别打印了整数变量 x,浮点数变量 y 和字符串变量 z 的类型。
丸趣 TV 网 – 提供最优质的资源集合!
正文完