I\'m sure this must be a duplicate but I can\'t find a clear answer on SO.
How do I output 2083525.34561 as 2,083,525.35 in Python 2?
2083525.34561
2,083,525.35
("%.2f" % 2083525.34561).replace(".", ",")