I have a list of strings in the format:
["[[xxx], [yyy]]",
 "[[xxx], [xxx], [yyy]]",
 "[[zzz]]"...
But I want it to be in a list of lists in the format:
[[[xxx], [yyy]],
 [[xxx], [xxx], [yyy]],
 [[zzz]]...
I tried ast, strip and split, etc... but can't seem to get it to work.
Edit: Editing to make more general.
 
     
    