I recently started working on python and have seen a lot of _ being used. I understand that _ is used to ignore values for e.g.
name, _ , shape = get_fruit() # returns a tuple.
However, I couldn't get many articles on _ functions e.g.
from django.utils.translation import gettext as _
Why is _ used here instead of simply using gettext() ?