用python语言编写程序:从键盘输入一个字符串,分别统计数字,字母(包括大小写)和其他字符的个数,输出每个字符及其个数。要求:用字典进行统计。
时间: 2023-05-18 18:05:56 浏览: 115
python 输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数 (示例)
5星 · 资源好评率100%
好的,这是一个很好的编程问题。以下是用 Python 编写的程序:
```python
string = input("请输入一个字符串:")
count = {"digit": 0, "letter": 0, "other": 0}
for char in string:
if char.isdigit():
count["digit"] += 1
elif char.isalpha():
count["letter"] += 1
else:
count["other"] += 1
print("数字个数:", count["digit"])
print("字母个数:", count["letter"])
print("其他字符个数:", count["other"])
```
这个程序会从键盘输入一个字符串,然后使用字典统计其中数字、字母和其他字符的个数,并输出结果。
阅读全文