Answers for "normalize currency format python symbol and decimal"

0

python convert long floats to usd

def as_currency(amount):
    if amount >= 0:
        return '${:,.2f}'.format(amount)
    else:
        return '-${:,.2f}'.format(-amount)
Posted by: Guest on November-09-2020

Code answers related to "normalize currency format python symbol and decimal"

Python Answers by Framework

Browse Popular Code Answers by Language