Rumah > Artikel > pembangunan bahagian belakang > 怎样操作Python遍历numpy数组
这次给大家带来怎样操作Python遍历numpy数组,操作Python遍历numpy数组的注意事项有哪些,下面就是实战案例,一起来看一下。
在用python进行图像处理时,有时需要遍历numpy数组,下面是遍历数组的方法:
[rows, cols] = num.shape for i in range(rows - 1): for j in range(cols-1): print(num[j, i])
相信看了本文案例你已经掌握了方法,更多精彩请关注php中文网其它相关文章!
推荐阅读:
Atas ialah kandungan terperinci 怎样操作Python遍历numpy数组. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!