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?
In Python, indexing starts at 0. Therefore, if you have a list with 53 items, list[52] will be the last item in the list.
list[52]