I have the tuple inside the list and I want to convert all the elements into 2d list. The tuple inside the list is like this
myList=[("[['MDLSBRO', 'TABY'], ['TABY', 'YAAM'], ['YAAM', 'NLRTN'], ['NLRTN', 'THIRSK'], ['THIRSK', 'YORK']]",)]
I have no clue how to break this stuff but I want to convert like this any help would be appreciated.
myList=[['MDLSBRO', 'TABY'], ['TABY', 'YAAM'], ['YAAM', 'NLRTN'], ['NLRTN', 'THIRSK'], ['THIRSK', 'YORK']]