编写函数,接收字符串参数,返回一个元组,其中第一个元素为大写字母个数,第二个元素为小写字母个数,第三个元素为其它字符个数。
时间: 2024-05-03 20:20:27 浏览: 32
编写二个函数,其中一个函数func1完成功能为:接收字符串参数,返回一个元组,其中第一个元素为字符串中大写字母个数,
5星 · 资源好评率100%
好的,我明白了。以下是符合要求的 Python 代码:
```
def count_letters(string):
upper_count = 0
lower_count = 0
other_count = 0
for char in string:
if char.isupper():
upper_count += 1
elif char.islower():
lower_count += 1
else:
other_count += 1
return (upper_count, lower_count, other_count)
```
您可以调用该函数并传递一个字符串参数来得到一个包含大写字母个数、小写字母个数和其它字符个数的元组。请注意,该函数只考虑 ASCII 字符,并且空格、数字、标点符号等都被视为其它字符。
阅读全文