I want to extract a float number from the string:
"{start Time : 123.24,"
I tried using re.findall like this:
number = re.findall("\d.\d", lines[i])
Where lines[i] is above string.
Which only returns only 3.2 (first decimal place).
How can I extract float number regardless its number of decimal places?