I have a file called patient.txt which has a list of dna sequences. I want to skip the first three line in this data file. Using the code below prints every line.
def read_patient_data(file):
file=open('patient.txt')
for aline in file:
return aline