数据文件“abc.txt” 中包含若干个英文单词, 如图所示:
读取文件“abc.txt” 中数据的 Python 程序段如下:
file = 'abc.txt'
word_b = []
for word in open(file):
if word[0:1] = = 'a' and len(word)>4:
word_b.append(word)
该程序段执行后, 列表 word_b 中的数据为? ( )
文件“abc.txt” 中所有包含字母“b” 且长度大于 4 的单词
文件“abc.txt” 中所有首字母为“a” 且长度大于 4 的单词
文件“abc.txt” 中所有第 2 个字母为“a” 且长度大于 4 的单词
文件“abc.txt” 中所有第 1、 2 个字母均为“a” 且长度大于 4 的单词