将字符串大写字母改为小写字母
时间: 2023-09-19 18:10:19 浏览: 107
Python实现将字符串的首字母变为大写,其余都变为小写的方法
可以使用Python的lower()方法将字符串中的大写字母转换为小写字母。例如:
```python
string = "HELLO WORLD"
lowercase_string = string.lower()
print(lowercase_string)
```
输出结果为:hello world
阅读全文
Python实现将字符串的首字母变为大写,其余都变为小写的方法