编写函数接收字符串参数返回一个元组
时间: 2024-06-13 20:07:23 浏览: 129
返回多个值的函数-华为云大数据中台架构分享
下面是一个编写函数接收字符串参数返回一个元组的例子:
```python
def count_upper_lower(s):
upper_count = 0
lower_count = 0
for c in s:
if c.isupper():
upper_count += 1
elif c.islower():
lower_count += 1
return (upper_count, lower_count)
```
这个函数接收一个字符串参数`s`,并返回一个元组,其中第一个元素为`s`中大写字母的个数,第二个元素为`s`中小写字母的个数。函数中使用了`isupper()`和`islower()`方法来判断字符是否为大写字母或小写字母。
例如,对于字符串`'Hello World'`,调用该函数可以得到元组`(2, 8)`,表示该字符串中有2个大写字母和8个小写字母。
阅读全文