python 从键盘输入一个字符串,分别统计数字,字母(包括大小写)和其他字符的个数,输出每个字符及其个数。要求:用字典进行统计。
时间: 2024-05-24 17:12:24 浏览: 47
Python实验 字符串.zip
5星 · 资源好评率100%
str = input("请输入一个字符串:")
num = 0
alpha = 0
other = 0
for i in str:
if i.isdigit():
num += 1
elif i.isalpha():
alpha += 1
else:
other += 1
dict = {'数字':num, '字母':alpha, '其他字符':other}
print("每个字符及其个数为:")
for key, value in dict.items():
print(key, ":", value)
阅读全文