AttributeError: module 'numpy' has no attribute 'arry'
时间: 2023-10-28 16:00:05 浏览: 108
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误是由于您使用了 `numpy.arry` 而不是正确的 `numpy.array`。请注意,正确的方法是使用 `numpy.array` 来创建一个数组。您可以尝试使用以下代码来使用正确的方法:
```python
import numpy as np
my_array = np.array([1, 2, 3])
print(my_array)
```
这将创建一个包含 `[1, 2, 3]` 的 numpy 数组并打印它。
阅读全文