2022-11-15 UTC
# jeremycherfas I have a string in the form `[12.45924, 41.88564],[12.45935, 41.88573]` The digits are, of course, part of the one string. I would like to convert each set of digits into a float. Ideally I would end up with a list of lists, i.e. `[[12.45924, 41.88564],[12.45935, 41.88573]]` in which the numbers are floats.