设计一个函数def changealpha(s: str):,返回一个字符串,将字符串s中所有的大写字母改成小写字母,小写字母改成大写字母,例如输入abc_EFG,返回的字符串为ABC_efg 根据上述要求完成函数代码,并将完整代码写在答题框内 def changealpha(s): # 补充函数代码
时间: 2024-03-13 21:45:59 浏览: 37
string字符串含有大写字母将其中大写字母转为小写字母
```python
def changealpha(s: str):
res = ''
for c in s:
if c.isupper():
res += c.lower()
elif c.islower():
res += c.upper()
else:
res += c
return res
```
阅读全文