ZeroDivisionErrorZeroDivisionError
A division or modulo operation was attempted with zero as the divisor.
asyncio.CancelledErrorAn asyncio task was cancelled.
Task.cancel() was called on the task, or the task was part of a group that was cancelled. This is the asyncio mechanism for cooperative task cancellation.
Handle CancelledError for cleanup: try: await task except CancelledError: cleanup(). Do not suppress it unless you have a good reason, as it prevents proper task cancellation. Use try-finally for guaranteed cleanup.
ZeroDivisionErrorA division or modulo operation was attempted with zero as the divisor.
ModuleNotFoundErrorPython could not find the specified module to import.
MemoryErrorThe Python interpreter ran out of available memory.
FileExistsErrorAn operation failed because the file or directory already exists.
struct.errorAn error occurred while packing or unpacking binary data with the struct module.
NotImplementedErrorA method that should be implemented by a subclass has not been implemented yet.