输入一个字符串,分别计算其中小写字母、大写字母、数字、其它字符的个数。
时间: 2023-12-13 16:05:49 浏览: 77
统计字符串中数字、字母和空格的个数
5星 · 资源好评率100%
可以使用Python中的字符串方法islower()、isupper()、isdigit()来判断一个字符是否为小写字母、大写字母、数字。
代码如下:
```python
string = input("请输入一个字符串:")
lower_count = 0
upper_count = 0
digit_count = 0
other_count = 0
for char in string:
if char.islower():
lower_count += 1
elif char.isupper():
upper_count += 1
elif char.isdigit():
digit_count += 1
else:
other_count += 1
print("小写字母个数:", lower_count)
print("大写字母个数:", upper_count)
print("数字个数:", digit_count)
print("其它字符个数:", other_count)
```
运行示例:
```
请输入一个字符串:Hello, World! 123
小写字母个数: 4
大写字母个数: 2
数字个数: 3
其它字符个数: 6
```
阅读全文