输入一个字符串,Python中统计其中数字字符及小写字符的个数
时间: 2023-12-14 16:38:28 浏览: 49
统计一个字符串中数字的个数
可以使用循环遍历字符串,并使用 isdigit() 和 islower() 方法来判断字符是否为数字字符和小写字符,然后分别累加个数即可。以下是示例代码:
```python
string = input("请输入字符串:")
num_count = 0
lower_count = 0
for char in string:
if char.isdigit():
num_count += 1
elif char.islower():
lower_count += 1
print("数字字符个数:", num_count)
print("小写字符个数:", lower_count)
```
你可以尝试输入不同的字符串进行测试。
阅读全文