本题要求编写程序,输入10个字符,统计其中英文字母、空格或回车、数字字符和其他字符的个数。
时间: 2023-03-20 22:00:52 浏览: 114
python 输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数 (示例)
5星 · 资源好评率100%
以下是一个简单的Python程序,可以实现输入10个字符,统计其中英文字母、空格或回车、数字字符和其他字符的个数:
```python
str_input = input("请输入10个字符:")
count_letter = 0 # 统计英文字母的个数
count_space = 0 # 统计空格或回车的个数
count_digit = 0 # 统计数字字符的个数
count_other = 0 # 统计其他字符的个数
for ch in str_input:
if ch.isalpha(): # 判断是否为英文字母
count_letter += 1
elif ch.isspace(): # 判断是否为空格或回车
count_space += 1
elif ch.isdigit(): # 判断是否为数字字符
count_digit += 1
else:
count_other += 1 # 其他字符的个数
print("英文字母的个数:", count_letter)
print("空格或回车的个数:", count_space)
print("数字字符的个数:", count_digit)
print("其他字符的个数:", count_other)
```
当程序运行后,会提示用户输入10个字符,然后根据用户输入的字符,统计其中英文字母、空格或回车、数字字符和其他字符的个数,并输出结果。
阅读全文