I have a tuple:
('ORF eins', '20:15', '21:05', 'soko-donau.html', 'Soko Donau', 'Schöne neue Welt')
that has six elements (index 0-5).
If I print with string formatting, like this:
print("""Entry {}
Title: {}
Station: {}
Start Time: {}
End Time: {}""".format(programID, details[4], details[0], details[1]), details[2])
I get an "IndexError: tuple index out of range" although I only use the index until 4 and have 6 elements in my tuple.
"""for docstrings was important you'd expect PEP 8 to say something about it, unless it's there and I missed it.