_ has 3 main conventional uses in Python:
- To hold the result of the last executed statement in an interactive interpreter session. This precedent was set by the standard CPython interpreter, and other interpreters have followed suit
- For translation lookup in il8n (imported from the corresponding C conventions, I believe)
- As a general purpose "throwaway" variable name to indicate that part of a function result is being deliberately ignored
The latter two purposes can conflict, so it is necessary to avoid using _ as a throwaway variable in any code block that also uses it for il8n translation.