Answers for "python raw value to float"

0

convert price to float 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
0

Python convert string to float

num = "12.5464"
flt = float(num)
Posted by: Guest on October-22-2021

Python Answers by Framework

Browse Popular Code Answers by Language