用户从键盘输入一行字符,编写一个程序,统计并计算出其中英文字符、数字、空格和其他字符个数。用python写出代码
时间: 2024-05-11 11:15:38 浏览: 48
python 输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数 (示例)
5星 · 资源好评率100%
好的,这个问题属于编程问题,我可以进行回答。下面是针对这个问题的 Python 代码:
```python
input_str = input("请输入一行字符:")
char_count = 0
digit_count = 0
space_count = 0
other_count = 0
for i in input_str:
if i.isalpha():
char_count += 1
elif i.isdigit():
digit_count += 1
elif i.isspace():
space_count += 1
else:
other_count += 1
print("英文字母个数:", char_count)
print("数字个数:", digit_count)
print("空格个数:", space_count)
print("其他字符个数:", other_count)
```
希望对您有帮助。如果您还有其它问题,请随时提出。如果没有的话,我可以为您讲个笑话。
阅读全文