0
PyCharmのPythonに関する非常に基本的な助けが必要です。私は.txtファイルから数値の2つの列を抽出しようとしています(ただし、各列の数値は変化します)。これまでのところ私のコードです。Pythonでtxtファイルから2列の数値を抽出してプロットする
pacient = str(input("Please enter your the name of the pacient: "))
Pname = pacient+'.txt'
print(Pname)
file = open(Pname,"r")
print (file.read())
# what i need in here is save the first column of the .txt in 't' and the second one in 'v'.
import matplotlib.pyplot as plt
plt.plot(t, v)
plt.xlabel('time (v)')
plt.ylabel('Velocity (m/s)')
plt.title(pacient+"plot")
plt.savefig("test.png")
plt.show()