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
if you are using Python 3 or above, here is an easier way to insert a comma:
value = -12345672 print (format (value, ',d'))
value = -12345672 print ('{:,}'.format(value))