pythonCopy import numpy as np a = np.array([[1,4,2],[7,9,4],[0,6,2]]) np.savetxt('myfile.csv', a, delimiter=',') ...
確定! 回上一頁