Python 检测变量类型
时间: 2023-11-05 22:12:37 浏览: 58
如何在python中判断变量的类型
5星 · 资源好评率100%
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() 函数返回的是一个类型对象,需要使用 str() 函数将其转换成字符串形式。
阅读全文