KeyboardInterruptKeyboardInterrupt
The user pressed Ctrl+C to interrupt the running program.
pandas KeyError: column not foundA DataFrame column access failed because the specified column name does not exist.
The column name you referenced does not exist in the DataFrame. Common causes: typos, extra whitespace in column names, different case, or the column was dropped/renamed earlier in the pipeline.
Check available columns: df.columns.tolist(). Strip whitespace: df.columns = df.columns.str.strip(). Use df.get('col', default) for safe access. Verify column names after read_csv() or transformations.
import pandas as pd; df = pd.DataFrame(); df['nonexistent']KeyboardInterruptThe user pressed Ctrl+C to interrupt the running program.
MemoryErrorThe Python interpreter ran out of available memory.
StopAsyncIterationRaised by an async iterator's __anext__() method to signal that iteration is complete.
ValueErrorA function received an argument of the right type but an inappropriate value.
TypeError: object is not iterableAn object that does not support iteration was used in a for loop, unpacking, or other iterable context.
LookupErrorBase class for errors raised when a key or index is not found (KeyError, IndexError).