In Python, I want to convert all strings in a list to non-string.
So if I have:
results = ["['new','york','intrepid', 'bumbling']","['duo', 'deliver', 'good', 'one']"]
How do I make it:
results = [['new','york','intrepid', 'bumbling'],['duo', 'deliver', 'good', 'one']]