输入一行字符,以'#'作为结束标志,分别统计出其中的英文字母、空格、数字和其他字符的个数。
时间: 2023-11-25 07:57:28 浏览: 29
输入一行字符,分别统计出其中英文字母、空格数字和其它字符的个数.docx
5星 · 资源好评率100%
'为结束符,统计其中的英文字母、空格、数字和其他字符的个数并输出。
提示:使用Python的字符串方法isalpha()、isspace()、isdigit()来判断字符的类型。
以下为示例代码:
```python
s = input('请输入一行字符:')
alpha_count = 0
space_count = 0
digit_count = 0
other_count = 0
for c in s:
if c.isalpha():
alpha_count += 1
elif c.isspace():
space_count += 1
elif c.isdigit():
digit_count += 1
else:
other_count += 1
print('英文字母个数为:', alpha_count)
print('空格个数为:', space_count)
print('数字个数为:', digit_count)
print('其他字符个数为:', other_count)
```
示例输入:
```
请输入一行字符:Hello, World! 123
```
示例输出:
```
英文字母个数为: 12
空格个数为: 2
数字个数为: 3
其他字符个数为: 2
```
阅读全文