用python写一个程序:给定某一字符串s,对其中的每一字符C大小写转换:如果c是大写字母,则将它转换成小写字母;如果c是小写字母,则将它转换成大写字母:如果c不是字母,则不转换。
时间: 2023-05-17 11:04:23 浏览: 150
将驼峰式字符串转换为蛇形式的Python程序
以下是用 Python 编写的程序,可以实现对字符串中每个字符的大小写转换:
```python
def convert_case(s):
result = ""
for c in s:
if c.isalpha():
if c.isupper():
result += c.lower()
else:
result += c.upper()
else:
result += c
return result
```
你可以将需要转换的字符串作为参数传递给 `convert_case` 函数,它将返回转换后的字符串。例如,如果你想将字符串 `"Hello, World!"` 中的每个字符大小写互换,可以这样调用函数:
```python
s = "Hello, World!"
result = convert_case(s)
print(result)
```
输出结果为:
```
hELLO, wORLD!
```
阅读全文