I don't know how to convert string to list inside of list. Split method seems the most popular, but it doesn't work.
I have a list:
corpus = ['[(0, 1), (1, 2), (2, 1)]']
I want to convert string to list like that:
corpus = [[(0, 1), (1, 2), (2, 1)]]
How I can do it?