本题要求编写程序,输入10个字符,统计其中英文字母、数字字符和其他字符的个数。
时间: 2023-04-24 11:00:31 浏览: 73
C语言程序设计-输入一行字符,分别统计出英文大小写字母、空格、数字和其他字符的个数
5星 · 资源好评率100%
下面是一个 Python 程序的示例:
```python
text = input("请输入10个字符:")
letter_count = 0
digit_count = 0
other_count = 0
for char in text:
if char.isalpha():
letter_count += 1
elif char.isdigit():
digit_count += 1
else:
other_count += 1
print("英文字母的个数:", letter_count)
print("数字字符的个数:", digit_count)
print("其他字符的个数:", other_count)
```
该程序首先提示用户输入 10 个字符,然后使用 for 循环遍历每个字符,使用 `isalpha()` 和 `isdigit()` 判断字符是否为英文字母或数字,并统计英文字母、数字字符和其他字符的个数。最后输出统计结果。
阅读全文