I have the following list;
lst = ["['atama', 'karada', 'kami', 'kao', 'hitai', 'me', 'mayu', 'mabuta', 'matsuge', 'hana']",
"['head', 'body', 'hair', 'face', 'forehead', 'eye', 'eyebrow', 'eyelid', 'eyelash', 'nose']"]
I need to get the contents of each item set as a list, so that I can print the items individually. Eg.
for item in lst:
for word in list(item):
print word
>>
atama
karada
kami
kao
etc.
Any ideas how I could format the str(item)|s to lists once again?