Answers for "parsing currency str to float 2 digits python"

0

python convert long floats to usd

>>> '${:,.2f}'.format(1234.5)
'$1,234.50'
Posted by: Guest on November-09-2020
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

Python Answers by Framework

Browse Popular Code Answers by Language