0

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
Azsgy
  • 3,139
  • 2
  • 29
  • 40

0 Answers0