pythonCopy import numpy as np a = np.array([1, 3, 5, 7]) np.savetxt('test1.txt', a, fmt='%d') a2 = np.loadtxt('test1.txt', ...
確定! 回上一頁