从键盘输入一个字符串,统计其中字母的个数,数字字符的个数,空格的个数。其他字符的个数
时间: 2023-06-17 21:04:52 浏览: 135
从键盘输入一串字符,分别统计其中的字母,数字字符和其他[文].pdf
下面是一个Python程序,可以实现输入一个字符串,统计其中字母的个数,数字字符的个数,空格的个数,以及其他字符的个数:
```python
str = input("请输入一个字符串:")
letters = 0
digits = 0
spaces = 0
others = 0
for i in range(len(str)):
if str[i].isalpha():
letters += 1
elif str[i].isdigit():
digits += 1
elif str[i].isspace():
spaces += 1
else:
others += 1
print("字母个数:", letters)
print("数字个数:", digits)
print("空格个数:", spaces)
print("其他字符个数:", others)
```
程序运行后,会要求用户输入一个字符串,然后通过循环遍历字符串的每个字符,判断字符是否是字母、数字、空格或其他字符,最终输出统计结果。
阅读全文