SyntaxErrorSyntaxError
Python encountered invalid syntax that cannot be parsed.
UnicodeEncodeErrorA Unicode string could not be encoded to the target encoding.
A character in the string cannot be represented in the target encoding. For example, encoding a string with non-ASCII characters to ASCII, or a character outside the target encoding's range.
Use UTF-8 encoding which supports all Unicode characters: string.encode('utf-8'). Use error handlers: string.encode('ascii', errors='replace') or errors='ignore'. Set the default encoding to UTF-8 in your environment.
"\u00e9".encode("ascii") # UnicodeEncodeErrorSyntaxErrorPython encountered invalid syntax that cannot be parsed.
ValueErrorA function received an argument of the right type but an inappropriate value.
multiprocessing.AuthenticationErrorAuthentication failed when connecting to a multiprocessing server.
TimeoutErrorA system-level timeout occurred during a blocking operation.
NotADirectoryErrorA directory operation was attempted on a path that is not a directory.
InterruptedErrorA system call was interrupted by an incoming signal.