Это мой код:
files = open('clean.txt').readlines()
print files
finallist = []
for items in files:
new = items.split()
new.append(finallist)
И так как текстовый файл слишком велик, вот пример "файлов печати":
files = ['chemistry leads outstanding another story \n', 'rhapsodic moments blow narrative prevent bohemian rhapsody']
Мне действительно нужен каждыйстрока, разделённая '\ n', должна быть разбита на слова и помещена в список списка, как в формате ниже:
outcome = [['chemistry','leads','outstanding', 'another', 'story'],['rhapsodic','moments','blow', 'narrative', 'prevent', 'bohemian', 'rhapsody']]
Я пробовал методы, как в первом приведенном коде, и он возвращает пустойсписок.Пожалуйста помоги!Заранее спасибо.