I currently have a column of string values which looks like this:
d = {'col1': '(100,200),(150,124),(135,137)'}
And I need to change this to float values to become this:
d = {'col1': [(100,200),(150,124),(135,137)]}
Any help would be much appreciated.