编写一个函数fun,从键盘上输入一个字符串,放在数组中,要求将字符串中的大写字母转换成小写字母,小写字母转换成大写字母,非字母字符不变
时间: 2024-03-22 15:39:56 浏览: 59
asp之字符串函数示例
以下是使用 Python 编写的函数 `fun`,它可以实现将输入的字符串中的大小写字母进行转换,并保留非字母字符不变:
```python
def fun():
# 从键盘上输入字符串
s = input("请输入一个字符串:")
# 将字符串中的大小写字母进行转换
result = ""
for c in s:
if c.islower():
result += c.upper()
elif c.isupper():
result += c.lower()
else:
result += c
# 输出转换后的字符串
print("转换后的字符串为:", result)
```
使用示例:
```python
fun()
请输入一个字符串:Hello World!
转换后的字符串为: hELLO wORLD!
```
阅读全文