For example, I read a code:
def parse_doc(self, _, doc):
What does the underline \"_\" mean?
_ is a valid variable name in python. But it is mostly used in i18n, so it's better to not to use it for other purposes.
_