用Python 编写函数,将大写字母转为小写字母
时间: 2024-03-19 07:43:24 浏览: 54
写自定义函数stringLower()实现将一个字符串中所有大写字母变为小写字母。在主函数中输入一含有大写字母的字符串,调用该函数并输出改变后的字符串。
5星 · 资源好评率100%
可以使用 Python 内置函数 `lower()` 将大写字母转为小写字母,示例代码如下:
```python
def convert_to_lowercase(s):
"""
将字符串 s 中的大写字母转为小写字母
"""
return s.lower()
```
可以通过调用该函数来将字符串中的大写字母转为小写字母,例如:
```python
s = "Hello World"
s_lower = convert_to_lowercase(s)
print(s_lower) # 输出 "hello world"
```
阅读全文