Python Tambahkan koma setiap format 3 digit

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