so I need to turn a list of str into a list of list of str.
EX:
thing = [' a b c', 'e f g']
into:
[['a', 'b', 'c'], ['e', 'f', 'g']]
My code keeps returning a mistake:
coolthing = []
abc = []
for line in thing:
abc = coolthing.append(line.split())
return abc