本文演示如何在Python 中製作二維陣列的副本. ... pythonCopy import numpy as np x = np.array([[23,34,45], [24, 45, 78]]) y = x.copy() print(y) ...
確定! 回上一頁