Python遍歷numpy數組

本篇博客主要介紹如何遍歷numpy數組。數組 下面是示例代碼:code import numpy as np num = np.zeros([2, 3]) [rows, cols] = num.shape print(rows, cols) for i in range(rows): for j in range(cols): print(num[i, j]) 運行結果:博
相關文章
相關標籤/搜索