I've a string represenation
of list inside a list
.
l=['[0, 1]', '[2, 3]']
and I need to convert it into the list
l=[[0, 1], [2, 3]]
but I don't know how. Till now to change a string to a list I had used the split mehod but it seems not useful here. Any idea? Thanks.