本题要求编写程序,输入10个字符,统计其中英文字母、空格或回车、数字字符和其他字符的个数。
时间: 2023-05-01 20:00:48 浏览: 829
输入10个字符,统计其中英文字母、空格或回车、数字字符和其他字符的个数(C语言代码)
这是一个用来统计字符串中字符类型数量的程序,需要输入10个字符并统计其中英文字母、空格或回车、数字字符和其他字符的个数。
例如:
```python
string = input("请输入10个字符: ")
letter_count = 0
space_count = 0
digit_count = 0
other_count = 0
for i in string:
if i.isalpha():
letter_count += 1
elif i.isspace():
space_count += 1
elif i.isdigit():
digit_count += 1
else:
other_count += 1
print("英文字母个数为: ", letter_count)
print("空格或回车个数为: ", space_count)
print("数字字符个数为: ", digit_count)
print("其他字符个数为: ", other_count)
```
阅读全文