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
A2 = [float(x.strip('"')) for x in A1] works, @Jake , but there are unnecessary 0s
A2 = [float(x.strip('"')) for x in A1]