I am trying to split this element:
'(353.0206847485174, 351.209306627799, 357.05459767397815, 351.53131418867196, 350.8487161820783, 356.76859139989006)'
to a numpy array. I tried the following:
'(353.0206847485174, 351.209306627799, 357.05459767397815, 351.53131418867196, 350.8487161820783, 356.76859139989006)'.split(', ')
but then I have the following:
['(353.0206847485174',
'351.209306627799',
'357.05459767397815',
'351.53131418867196',
'350.8487161820783',
'356.76859139989006)']
So the first and last element still has the columns, any idea how to fix that? thanks