在python中如何查看数据类型
时间: 2024-12-16 16:26:35 浏览: 1
详解python变量与数据类型
5星 · 资源好评率100%
在Python中,你可以使用内置的`type()`函数来查看变量的数据类型。这个函数接收一个对象作为参数,返回该对象的数据类型。下面是几种常用的方法:
1. 对于单个变量,直接调用`type()`:
```python
x = 10
print(type(x)) # 输出:<class 'int'>
```
2. 对于列表、元组、字典等复合数据结构,也可以用`type()`查看它们的整体类型:
```python
my_list = [1, 'hello', 3.14]
print(type(my_list)) # 输出:<class 'list'>
```
3. 如果你想查看字符串、数字等内置类型的实例,`type()`同样适用:
```python
s = "Hello, World!"
print(type(s)) # 输出:<class 'str'>
```
4. 对于函数或类,`type()`会返回它们是函数还是类对象:
```python
def my_function():
pass
print(type(my_function)) # 输出:<class 'function'>
class MyClass:
pass
print(type(MyClass)) # 输出:<class '__main__.MyClass'>
```
阅读全文