import matplotlib.pyplot as pltimport numpy as npdata = np.loadtxt('NF_out.txt')plt.plot(data[:,0],data[:,1])plt.show()