我有一个txt
文件。我编写了一些代码来搜索文件'Monday'
,并提供了一个计数器来检查在文件中发现'Monday'
的次数。
我想问一个问题'what do you want to search for?'
,并允许最终用户输入一个单词。然后,代码应找出所需单词出现在文件中的次数。
print('what do you want to search for?')
name = input()
count=0
f=open('/Users/z007881/Documents/days.txt','r')
findit=f.readlines()
for line in findit:
if "input" in line:
count=count+1
print (count)
f.close()