format de monnaie python

import locale
from unicodedata import normalize
locale.setlocale(locale.LC_ALL, 'en-ZA')
locale_currency = locale.currency(116114912749.18, grouping=True)
normalized_currency = normalize('NFKD', locale_currency)
print(normalized_currency)
Toothless