Answers for "python convert currency string to float"

15

string to float python

# Use the function float() to turn a string into a float
string = '123.456'
number = float(string)
number
# Output:
# 123.456
Posted by: Guest on February-18-2020
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

Code answers related to "python convert currency string to float"

Python Answers by Framework

Browse Popular Code Answers by Language