如何判断一个列表是numpy列表还是Python列表
时间: 2023-10-30 18:02:10 浏览: 155
可以使用type()函数来判断一个列表是numpy列表还是Python列表。若列表是numpy列表,则type()函数返回<class 'numpy.ndarray'>;若列表是Python列表,则type()函数返回<class 'list'>。
例如:
```python
import numpy as np
# 创建一个numpy列表
a = np.array([1, 2, 3])
# 创建一个Python列表
b = [1, 2, 3]
# 判断列表类型
print(type(a)) # <class 'numpy.ndarray'>
print(type(b)) # <class 'list'>
```
阅读全文