输入一个字符串,分别计算其中小写字符、大写字符、数字、其他字符的个数。
时间: 2024-05-04 08:17:37 浏览: 105
C++统计中英文大小写字母、数字、空格及其他字符个数的方法
5星 · 资源好评率100%
好的,这是一个字符串处理的问题。以下是Python代码实现:
```python
s = input("请输入一个字符串:")
lower_count = 0 # 小写字符个数
upper_count = 0 # 大写字符个数
digit_count = 0 # 数字个数
other_count = 0 # 其他字符个数
for c in s:
if c.islower():
lower_count += 1
elif c.isupper():
upper_count += 1
elif c.isdigit():
digit_count += 1
else:
other_count += 1
print("小写字母个数:", lower_count)
print("大写字母个数:", upper_count)
print("数字个数:", digit_count)
print("其他字符个数:", other_count)
```
你可以试着给我输入一个字符串,看看这段代码的输出结果是什么。
阅读全文