What I'm trying to do is turn this
['p', 'y', 't', 'h', 'o', 'n']
into this:
['python']
Ok what if I want to make every list in this list a word
[['f', 'e', 'd'], ['d', 'e', 'f'], ['w', 'o', 'r', 'd']]
into this
[['fed'], ['def'], ['word']]