python如何判断数据类型
时间: 2023-12-29 22:26:09 浏览: 83
python查看数据类型的方法
Python提供了一个内置函数`type()`来判断数据类型。你可以将要判断的数据作为参数传递给`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`的数据类型。你可以根据需要使用`type()`函数来判断任何数据的类型。
阅读全文