Python中的矩阵 2021-11-12 本文已影响0人 Neural_PDE import numpy as np x = np.array([[1,2,5],[2,3,5],[3,4,5],[2,3,6]]) # 输出数组的行和列数 x.shape # (4, 3)