编写Python函数,接受一个字符串,分别统计大写字母、小写字母、数字、其他字符的个数,并以元组的形式返回结果。
时间: 2023-07-10 09:15:41 浏览: 81
Python基础之字符串操作常用函数集合
好的,以下是函数的代码:
```python
def count_characters(string):
upper_count = 0
lower_count = 0
digit_count = 0
other_count = 0
for char in string:
if char.isupper():
upper_count += 1
elif char.islower():
lower_count += 1
elif char.isdigit():
digit_count += 1
else:
other_count += 1
return (upper_count, lower_count, digit_count, other_count)
```
这个函数接受一个字符串作为参数,然后使用 `for` 循环遍历字符串中的每个字符,根据字符的类型来分别增加计数器的值。
最后,函数返回一个包含四个计数器值的元组。
阅读全文