python显示数据类型
时间: 2023-11-15 13:55:06 浏览: 78
python查看数据类型的方法
在Python中,可以使用`type()`函数来显示数据类型。例如:
```python
a = 5
print(type(a)) # <class 'int'>
b = "hello"
print(type(b)) # <class 'str'>
c = [1, 2, 3]
print(type(c)) # <class 'list'>
```
阅读全文