从 hello . txt 文件查找字符串" hello ",并统计" hello "出现的次数。python
时间: 2023-07-05 11:27:45 浏览: 114
python统计字符串中指定字符出现次数的方法
5星 · 资源好评率100%
可以使用Python自带的文件操作和字符串操作函数来实现这个需求,代码如下:
```python
count = 0 # 用于统计 "hello" 出现的次数
with open("hello.txt", "r") as f: # 打开文件
for line in f: # 逐行读取文件内容
count += line.count("hello") # 统计 "hello" 出现的次数
print(count) # 输出结果
```
其中,`with open("hello.txt", "r") as f` 用于打开名为 "hello.txt" 的文件,并将其赋值给变量 `f`,`for line in f` 则用于逐行读取文件内容。`line.count("hello")` 则用于统计每行中 "hello" 出现的次数,并将其累加到变量 `count` 中。最后,输出变量 `count` 的值即可。
阅读全文