import numpy as np import matplotlib.pyplot as plt a=np.loadtxt("ruther.dat") plt.plot(a[:,1],a[:,2],color="red") plt.show()