Parse A String To A Float In Python

python

input = "234.737"
as_float = float(input)
print(as_float)
            
234.737