python去除字符串变成小写
时间: 2023-05-19 16:05:02 浏览: 112
Python实现将字符串的首字母变为大写,其余都变为小写的方法
5星 · 资源好评率100%
可以使用Python内置函数lower()来将字符串转换为小写,并使用strip()函数去除字符串两端的空格。
示例代码:
```
string = " Hello World! "
lower_string = string.strip().lower()
print(lower_string)
```
输出结果:
```
hello world!
```
阅读全文