I have a python list with strings in this format:
A1 = [\' \"29.0\" \',\' \"65.2\" \',\' \"75.2\" \']
How do I convert those strings into d
use the built in float() function in a list comprehension.
A2 = [float(v.replace('"','').strip()) for v in A1]