我有一个txt文件,我想使用 list comprehension 和 command导出所有以'F'或'f'split()开头的单词。
count = []
with open('data.txt','r') as myfile:
count = [line for line in myfile.split() if (line[0]=='F' or line[0]=='f')]
print(count)
我采取以下错误
'_io.TextIOWrapper' 对象没有属性 'split'
因此,有没有其他方法可以使用列表理解和命令拆分以获得所需的结果?
catspeake
当年话下
慕哥9229398
相关分类