Python добавить запятую каждый 3 цифр формат

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