python 判断变量的数据类型
时间: 2023-11-03 10:22:37 浏览: 177
要判断变量的数据类型,可以使用Python内置的type()函数。它可以返回变量所属的数据类型。例如:
```python
x = 5
y = "Hello"
z = [1, 2, 3]
print(type(x)) # <class 'int'>
print(type(y)) # <class 'str'>
print(type(z)) # <class 'list'>
```
在上述示例中,type()函数分别返回变量x、y和z的数据类型,即整数、字符串和列表。
阅读全文