18.输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。、
时间: 2024-04-14 14:30:33 浏览: 60
输入一行字符,分别统计出其中英文字母、空格数字和其它字符的个数.docx
5星 · 资源好评率100%
请使用 Python 的字符串方法和循环语句来实现。
示例代码:
```
s = input("请输入一行字符:")
letters = 0
spaces = 0
digits = 0
others = 0
for c in s:
if c.isalpha():
letters += 1
elif c.isspace():
spaces += 1
elif c.isdigit():
digits += 1
else:
others += 1
print("英文字母个数:", letters)
print("空格个数:", spaces)
print("数字个数:", digits)
print("其他字符个数:", others)
```
这段代码使用了Python中的字符串方法 isalpha(),isspace(),isdigit()来分别判断输入的字符是否是字母,空格,数字,如果是这三种类型就分别将相应的变量增加1,如果不是就将others变量增加1.最后输出统计结果。
阅读全文