I have an example list
['i,am,a,dog,i,am,a,king,king,is,god,god,made,humans,dog,loves,humans']
The problem is that all the words are on the same index. Please suggest how can we convert it into a proper list with all words at different indexes.
Apologies in advance as I don't know how to frame the title for this issue.
result:
['i','am','a','dog','i','am','a','king','king','is','god','god','made','humans','dog','loves','humans']