Answers for "how to convert cost to float in python"

0

how to convert cost to float in python

from re import sub
from decimal import Decimal

money = '$6,150,593.22'
value = Decimal(sub(r'[^\d.]', '', money))
Posted by: Guest on April-25-2020

Code answers related to "how to convert cost to float in python"

Python Answers by Framework

Browse Popular Code Answers by Language