当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python String lower方法用法及代码示例


Python 的 str.lower() 方法将提供的字符串的所有大小写字符转换为小写。

参数

无参数。

返回值

所有大小写字符都转换为小写的字符串。

例子

要将 "Hello World!" 的所有大小写字符转换为小写:

x = "Hello World!"
x.lower()



'hello world!'

相关用法


注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 Python String | lower method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。