import cPickle file = open('tmp.dat', 'wb') file.write('This is the array a1:\n') cPickle.dump(a1, file) file.write('Here is another array a2:\n') ...
確定! 回上一頁