Hello everyone,
I am new to programming and am learning Python as my first language. I have been tasked with writing a script that converts one input file type to another. My problem is this: There is one part of the input files where there can be any number of rows of data. I wrote a loop to determine how many rows there are but cannot seem to write a loop that defines each line to its own variable eg: rprim1, rprim2, rprim3, etc. This is the code I am using to pull variables from the files:
rprim1=linecache.getline(infile,7)
To reiterate, I would like the parser to define however many lines of data there are, X, as rprimx, with each line,7 to 7+X.
Any help would be appreciated.
Thanks