Python Ajouter une virgule chaque format à 3 chiffres

>>> total_amount = 10000
>>> print("{:,}".format(total_amount))
10,000
Testy Turtle