SyntaxErrorSyntaxError
Python encountered invalid syntax that cannot be parsed.
PermissionErrorThe operation is not permitted due to insufficient file system permissions.
Your Python process does not have the required read, write, or execute permissions on the file or directory. This is common when writing to system directories, accessing other users' files, or when a file is locked.
Check file permissions with os.stat() or ls -la. Change permissions with os.chmod() or chmod command. Run with appropriate user privileges. Avoid writing to system directories; use user-writable paths instead.
SyntaxErrorPython encountered invalid syntax that cannot be parsed.
ProcessLookupErrorThe specified process does not exist.
AssertionErrorAn assert statement failed because the condition evaluated to False.
asyncio.TimeoutErrorAn asyncio operation exceeded its timeout.
IndexErrorA sequence index is out of the valid range for the given sequence.
NameErrorA local or global name was referenced that has not been defined.