numpy查看数据类型
时间: 2023-10-08 15:09:45 浏览: 161
python查看数据类型的方法
在numpy中,可以使用`dtype`属性来查看数组的数据类型。
例如,创建一个整型数组:
```python
import numpy as np
arr = np.array([1, 2, 3])
print(arr.dtype)
```
输出:
```
int64
```
创建一个浮点型数组:
```python
arr = np.array([1.0, 2.0, 3.0])
print(arr.dtype)
```
输出:
```
float64
```
也可以使用`astype`方法来改变数组的数据类型:
```python
arr = np.array([1.0, 2.0, 3.0])
new_arr = arr.astype(int)
print(new_arr.dtype)
```
输出:
```
int64
```
阅读全文