从键盘输入一行字符,分别统计其中英文、空格、数字、其它字符的个数python
时间: 2024-01-29 08:04:33 浏览: 73
Python基础之字符串操作常用函数集合
可以使用 Python 的字符串方法和循环语句来实现这个功能。下面是一段示例代码:
```python
text = input("请输入一行字符:")
en_count = 0
space_count = 0
num_count = 0
other_count = 0
for char in text:
if char.isalpha():
en_count += 1
elif char.isspace():
space_count += 1
elif char.isdigit():
num_count += 1
else:
other_count += 1
print("英文字符个数:", en_count)
print("空格个数:", space_count)
print("数字个数:", num_count)
print("其他字符个数:", other_count)
```
代码首先获取用户输入的一行字符,然后通过循环逐个检查每个字符并判断其属于哪种类型。最后输出各类字符的个数。
阅读全文