def write_paragraph_lines(paragraph_lines):
paragraph_str = ' '.join(paragraph_lines)
for sent in sent_tokenize(paragraph_str):
if lowercase:
sent = sent.lower()
output_file.write(' '.join(word_tokenize(sent))+'\n')
评论列表
文章目录