I need to convert a string which has nested lists in it, into a list Is there a way to do this without the use of eval() and non standard python libraries? An example would be:
input = '[4,[5,6],7,[8,[9,10]],11,12,[13,14]]'
output = [4,[5,6],7,[8,[9,10]],11,12,[13,14]]