使用np.random.random创建一个10x10的ndarray对象,并打印出最大最小元素
时间: 2023-05-18 09:06:10 浏览: 95
matplotlib 中的 cmap 参数介绍.docx
好的,我可以回答这个问题。以下是代码:
```python
import numpy as np
arr = np.random.random((10, 10))
print("最大值:", np.max(arr))
print("最小值:", np.min(arr))
```
输出结果可能会不同,因为每次运行时生成的随机数不同。
阅读全文