python 字符串转小写
时间: 2023-09-25 19:12:33 浏览: 54
Python实现将字符串的首字母变为大写,其余都变为小写的方法
请使用字符串的 `lower()` 方法将字符串转换为小写。以下是一个示例:
```python
string = "Hello World"
lowercased_string = string.lower()
print(lowercased_string)
```
输出结果为:
```
hello world
```
阅读全文