Suppose I have a list of sublist:
lst = [ ['A', 'is', 'from', 'B,', '2', 'm', 'from', 'C', '1.2', 'm', 'from', 'D.'],
['0.3', 'm', 'from', 'D.'] ]
and I wanted to organize the letters after the word "from" so I want to have
new_lst = [ [B,C,D], [D] ]
