Python lower()方法

Python lower()方法

Python 字符串Python 字符串

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

 

语法

lower()方法语法:

str.lower()

 

参数

  • 无。

 

返回值

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

 

实例

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

#!/usr/bin/python

str = "THIS IS STRING EXAMPLE....WOW/b64/";

print str.lower();

以上实例输出结果如下:

this is string example....wow/b64/

Python 字符串Python 字符串

下一节:Python lstrip()方法

Python 教程

相关文章