定义两个函数,分别用于将小写字母转换为大写和将大写字母转换为小写
时间: 2024-02-01 21:13:19 浏览: 60
写自定义函数stringLower()实现将一个字符串中所有大写字母变为小写字母。在主函数中输入一含有大写字母的字符串,调用该函数并输出改变后的字符串。
5星 · 资源好评率100%
以下是 Python 语言的代码实现:
```python
def to_uppercase(s):
"""
将字符串 s 中的小写字母转换为大写字母
"""
return s.upper()
def to_lowercase(s):
"""
将字符串 s 中的大写字母转换为小写字母
"""
return s.lower()
```
使用示例:
```python
>>> s = "Hello World!"
>>> to_uppercase(s)
'HELLO WORLD!'
>>> to_lowercase(s)
'hello world!'
```
阅读全文