用python编程,#己知一句英文绕口令: #"A biz black bug bit a big black bear and made the big black bear bleed b1ood. “ #将其存放在一个字符串中。 #编与程序,统计该统口令中元音字母出;现的次数(不区分大小写),并将结果输出。 #要求:元音字母和对应的出现次数用字典来存储。
时间: 2024-02-22 19:01:00 浏览: 129
python 输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数 (示例)
5星 · 资源好评率100%
可以这样编写程序:
```python
# 定义英文绕口令字符串
tongue_twister = "A biz black bug bit a big black bear and made the big black bear bleed blood."
# 将字符串转换为小写字母
tongue_twister = tongue_twister.lower()
# 定义元音字母列表
vowels = ['a', 'e', 'i', 'o', 'u']
# 定义统计字典
count_dict = {}
# 遍历字符串,统计元音字母出现次数
for char in tongue_twister:
if char in vowels:
if char in count_dict:
count_dict[char] += 1
else:
count_dict[char] = 1
# 输出统计结果
for vowel in count_dict:
print(vowel, "出现了", count_dict[vowel], "次")
```
输出结果为:
```
a 出现了 6 次
i 出现了 3 次
u 出现了 2 次
e 出现了 5 次
o 出现了 2 次
```
阅读全文