Using Python v2, I have a value running through my program
that puts out a number rounded to 2 decimal places at the end:
like this:
print ("Total cost is: ${:0.2f}".format(TotalAmount))
Is there a way to insert a comma value every 3 digits left of the decimal point?
Ie: 10000.00 becomes 10,000.00 or 1000000.00 becomes 1,000,000.00
Thanks for any help.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…