字典统计特定字符串出现次数
时间: 2023-09-19 22:10:19 浏览: 86
一个字符串中出现次数最多的字符 统计这个次数【实现代码】
以下是Python代码,用于统计给定字符串在字典中出现的次数:
```python
# 定义一个字典
my_dict = {'apple': 2, 'banana': 3, 'orange': 2, 'grape': 1}
# 定义要统计的字符串
target_str = 'apple'
# 统计字符串出现次数
count = 0
for key, value in my_dict.items():
if key == target_str:
count += value
# 输出结果
print("'%s'出现了%d次" % (target_str, count))
```
输出结果将是:`'apple'出现了2次`
阅读全文