用python实现从hello.txt文件查找字符串“hello”,并统计“hello”出现的次数。
时间: 2023-10-04 22:11:25 浏览: 100
python统计字符串中指定字符出现次数的方法
5星 · 资源好评率100%
可以使用以下代码实现:
```python
with open('hello.txt', 'r') as f:
content = f.read()
count = content.count('hello')
print('hello出现的次数为:', count)
```
其中,`with open('hello.txt', 'r') as f:`表示使用`with`语句打开文件`hello.txt`,并将其赋值给变量`f`,`'r'`表示以只读模式打开文件。`content = f.read()`表示读取文件内容并将其赋值给变量`content`。`count = content.count('hello')`表示统计字符串`hello`在文件内容中出现的次数,并将其赋值给变量`count`。最后使用`print()`函数输出结果。
阅读全文