输入一行字符,分别统计出其中英文字母、空格、数字和其他字符的个数
时间: 2023-05-14 14:06:05 浏览: 40
输入一行字符,分别统计出其中英文字母、空格数字和其它字符的个数.docx
5星 · 资源好评率100%
你好,这是一个常见的字符串处理问题。以下是一个简单的 Python 代码示例,可以实现该功能:
```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)
```
希望这个代码能够帮到你。如果你有任何其他问题,欢迎继续提问。
阅读全文