python将大写字符串转成小写字符串的函数
时间: 2023-09-20 19:12:58 浏览: 107
Python实现将字符串的首字母变为大写,其余都变为小写的方法
Python中可以使用`lower()`函数将大写字符串转换为小写字符串。下面是一个示例:
```python
def convert_to_lowercase(string):
lowercase_string = string.lower()
return lowercase_string
```
你可以调用这个函数并传入要转换的大写字符串作为参数。例如:
```python
uppercase_string = "HELLO WORLD"
lowercase_string = convert_to_lowercase(uppercase_string)
print(lowercase_string)
```
输出结果将会是:
```
hello world
```
阅读全文