Python 的 str.casefold()
方法将提供的字符串的所有字符转换为小写。
参数
无参数。
返回值
返回所有字符都转换为小写的字符串。
例子
将 "Hello World!"
的所有字符转换为小写:
x = "Hello World!"
x.casefold()
'hello world!'
相关用法
- Python String casefold()用法及代码示例
- Python String capitalize方法用法及代码示例
- Python String capitalize()用法及代码示例
- Python String count方法用法及代码示例
- Python String count()用法及代码示例
- Python String center()用法及代码示例
- Python String center方法用法及代码示例
- Python String isnumeric方法用法及代码示例
- Python String Center()用法及代码示例
- Python String zfill方法用法及代码示例
- Python String rstrip方法用法及代码示例
- Python String decode()用法及代码示例
- Python String join()用法及代码示例
- Python String isalnum()用法及代码示例
- Python String endswith方法用法及代码示例
- Python String rsplit()用法及代码示例
- Python String isidentifier()用法及代码示例
- Python String startswith()用法及代码示例
- Python String rjust方法用法及代码示例
- Python String rpartition()用法及代码示例
- Python String rpartition方法用法及代码示例
- Python String ljust方法用法及代码示例
- Python String splitlines()用法及代码示例
- Python String upper()用法及代码示例
- Python String isprintable()用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 Python String | casefold method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。