という名前のテキスト ファイルがありますtest.txt
。私はそれを読んで、ファイルからすべての単語 (改行を削除したもの) のリストを返したいと思っています。
これは私の現在のコードです:
def read_words(test.txt):
open_file = open(words_file, 'r')
words_list =[]
contents = open_file.readlines()
for i in range(len(contents)):
words_list.append(contents[i].strip('\n'))
return words_list
open_file.close()
このコードを実行すると、次のリストが生成されます。
['hello there how is everything ', 'thank you all', 'again', 'thanks a lot']
リストを次のようにしたい:
['hello','there','how','is','everything','thank','you','all','again','thanks','a','lot']