我可以在python中问一个问题并在bash中回答它吗(您要搜索什么?以bash答案并搜索一个文件?

时间:2019-03-28 00:18:38

标签: python python-3.x

我有一个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()

0 个答案:

没有答案