I have a list of strings where the strings have lists. I want to return a list of lists.
Here is what I might start with:
old_list = ['[1,2,m]','[4.1,3.5,5]','[x,y,z]', '["t","u","v"]']
Here is what I would want:
new_list = [[1,2,'m'],[4.1,3.5,5],['x','y','z'],['t','u','v']]