I have a list of one string that looks like this:
['(0.027725, 0.0088202301), (0.00055000000000000003, 0.0040760101),
(0.1666, 0.0020067799), (0.00545, 0.021263899)']
But I want it to be a list of tuples that look that this:
[(0.027725, 0.0088202301),
(0.00055000000000000003, 0.0040760101),
(0.1666, 0.0020067799),
(0.00545, 0.021263899)]
Does anyone know how to do this?