Error » text

text → string

Returns a one-liner that describes the error in human language.

python>>> try:
...   # ...
... except Error as e:
...   return e.message
"In line 4 'a' is copied into itself."

Return value

A single sentence that describes the error in human language.