请将第4章例4-6中的问卷调查结果用文本文件“result.txt" 保存,并编写程序读该文件然后统计各评语出现的次数,再将最终统计结果追加至“result.txt”文件中。
时间: 2024-02-21 19:58:47 浏览: 297
result.txt
5星 · 资源好评率100%
好的,以下是Python代码实现:
```python
# 读取文件并统计各评语出现的次数
comments = {}
with open('result.txt', 'r') as f:
for line in f:
comment = line.strip()
if comment in comments:
comments[comment] += 1
else:
comments[comment] = 1
# 将统计结果写入文件
with open('result.txt', 'a') as f:
f.write('\n统计结果:\n')
for comment, count in comments.items():
f.write('{}: {}\n'.format(comment, count))
```
请将上述代码保存为文件,然后在命令行中执行即可。执行后,程序会读取“result.txt”文件中的评语,并统计各评语出现的次数,最终将统计结果追加至“result.txt”文件中。
阅读全文