统计一个给定字符串中大写字母、小写字母、数字的个数,并以字典形式返回结果
时间: 2023-05-20 22:03:36 浏览: 114
统计一个字符串中某个字符的个数
4星 · 用户满意度95%
好的,我可以回答这个问题。以下是统计给定字符串中大写字母、小写字母、数字的个数,并以字典形式返回结果的代码:
```python
def count_chars(s):
counts = {'upper': 0, 'lower': 0, 'digit': 0}
for c in s:
if c.isupper():
counts['upper'] += 1
elif c.islower():
counts['lower'] += 1
elif c.isdigit():
counts['digit'] += 1
return counts
```
你可以将需要统计的字符串作为参数传递给这个函数,它将返回一个字典,其中包含大写字母、小写字母和数字的个数。例如,如果你想统计字符串 "Hello, World! 123" 中的字符个数,你可以这样调用函数:
```python
counts = count_chars("Hello, World! 123")
print(counts)
```
输出结果应该是:
```
{'upper': 2, 'lower': 8, 'digit': 3}
```
希望这个回答能够帮助到你!
阅读全文