PHP前端开发

python中lower如何使用

百变鹏仔 2个月前 (01-23) #Python
文章标签 如何使用

描述

Python lower() 方法转换字符串中所有大写字符为小写。

语法

lower()方法语法:

立即学习“Python免费学习笔记(深入)”;

str.lower()

返回值

返回将字符串中所有大写字符转换为小写后生成的字符串。

实例

以下实例展示了lower()的使用方法:

#!/usr/bin/pythonstr = "THIS IS STRING EXAMPLE....WOW!!!";print str.lower();

以上实例输出结果如下

this is string example....wow!!!