Python/外部ファイルからデータ取得

Python
import re

source = "english_words_01.txt"

with open(source) as f:
    data = f.read()
    
english_words = re.findall("[a-z]+", data)
print(english_words)