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


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


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

参数

无参数。

返回值

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

例子

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

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



'hello world!'

相关用法


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