can anyone help me with this convertion? I need a list from string.
x = [[1,2],[2.3,59]]
y = str(x)
backToList = list(y)
backToList = ['[', '[', '1', ',', ' ', '2', ']', ',', ' ', '[', '2', '.', '3', ',', ' ', '5', '9', ']', ']']
I need to get this: backToList = [[1,2],[2.3,59]] Thx.