How to write numpy arrays to .txt file, starting at a certain line?
问题 I need to write 3 numpy arrays into a txt file. The head of the file looks like that: #Filexy #time operation1 operation2 The numpy arrays look like the following: time = np.array([0,60,120,180,...]) operation1 = np.array([12,23,68,26,...)] operation2 = np.array([100,123,203,301,...)] In the end, the .txt file should look like this (delimiter should be a tab): #Filexy #time operation1 operation2 0 12 100 60 23 123 120 68 203 180 26 301 .. ... ... I tried it with "numpy.savetxt" - but I did