As a result of a function I have a list with the elements inside another list, and I would like to extract this elements to have a unique list.
This is the list I have:
[['word'], ['word'], ['word'], ['word']]
This is the list I would like to have:
['word', 'word', 'word', word']
How can I do this?