输入一个字符串,统计大写小写数字字符个数
时间: 2023-07-01 12:11:47 浏览: 94
统计一个字符串中数字的个数
好的,可以使用 Python 编写一个函数来实现:
```python
def count_chars(string):
upper_count = 0
lower_count = 0
digit_count = 0
for char in string:
if char.isupper():
upper_count += 1
elif char.islower():
lower_count += 1
elif char.isdigit():
digit_count += 1
return upper_count, lower_count, digit_count
```
这个函数接受一个字符串作为参数,然后使用 `isupper()`、`islower()` 和 `isdigit()` 方法来判断每个字符是大写字母、小写字母还是数字,最后返回一个包含大写字母数、小写字母数和数字数的元组。你可以调用这个函数并输入一个字符串来测试它。
阅读全文