I\'m telling my program to print out line 53 of an output. Is this error telling me that there aren\'t that many lines and therefore can not print it out?
That's right. 'list index out of range' most likely means you are referring to n-th element of the list, while the length of the list is smaller than n.