IndexErrorIndexError: list index out of range
A sequence index is out of the valid range for the given sequence.
EOFErrorThe input() function or raw_input() hit end-of-file without reading any data.
The input() function received EOF (end of file) instead of data. This happens when reading from a pipe/file that has ended, when stdin is closed, or when Ctrl+D is pressed in a terminal.
Wrap input() calls in try-except EOFError. Check if there is input available before reading. For piped input, handle the end-of-stream case. Provide a default value when EOF is encountered.
IndexErrorA sequence index is out of the valid range for the given sequence.
OSErrorA system-level error occurred during an I/O operation.
concurrent.futures.TimeoutErrorA Future did not complete within the specified timeout period.
SyntaxErrorPython encountered invalid syntax that cannot be parsed.
TypeErrorAn operation or function was applied to an object of an inappropriate type.
TabErrorIndentation uses an inconsistent mix of tabs and spaces.