x = [1, 2, 3] >>> y = np.array([[1, 2], [3, 4], [5, 6]]) >>> plot(x, y) Copy to clipboard. is equivalent to: >>> for col in range(y.shape[1]): ... plot(x, ...
確定! 回上一頁