You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
299 B

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

# 1.6 寻找10x10数组最大值
## (1). 解题思路
`10x10`的数组可以通过你`numpy.random.rand`函数通过给定`10x10`的维度生成,然后直接调用内置方法`max`与`min`可以找到数组中的最大最小值。
## (2). 运行结果
![](images/result.png)