# Read the data from file sp5.dat # then print the first 5 lines. import numpy as np a = np.loadtxt("sp5.dat") i=0 while i < 5: print(a[i]) i=i+1