使用Python1、 编写程序,打开一个已经存在的文件demo.txt,读出文件中的内容,判断该文件中某些给定关键字如“组织”出现的次数。
时间: 2024-02-11 16:08:01 浏览: 78
以下是实现上述功能的Python代码:
```python
filename = "demo.txt" # 文件名
keywords = ["组织", "关键字2", "关键字3"] # 给定关键字列表
# 统计给定关键字出现的次数
count = [0] * len(keywords) # 初始化计数器
with open(filename, "r") as f:
content = f.read() # 读取文件内容
for i in range(len(keywords)):
count[i] = content.count(keywords[i]) # 统计关键字出现次数
# 输出结果
for i in range(len(keywords)):
print("关键字\"{}\"出现了{}次".format(keywords[i], count[i]))
```
其中,我们使用了Python内置的`open()`函数打开了一个文件,使用`read()`方法读取了文件的全部内容,并使用`count()`方法统计了给定关键字在文件中出现的次数。最后将结果输出即可。
阅读全文