Python 的 str.capitalize(~)
方法将字符串的第一个字符转换为标题大写,并将所有其他字符转换为小写。这意味着二合字母字符只会将其第一个字母大写。
参数
无参数。
返回值
一个新字符串,其中字符串的第一个字符转换为标题大小写。
例子
要将 "hello there. How aRe you?"
的第一个字母转换为首字母大写,并将所有其他字符转换为小写:
x = "hello there. How aRe you?"
x.capitalize()
'Hello there. how are you?'
请注意,源字符串 x
保持不变,并返回一个新字符串。如果我们打印 x
可以确认这一点:
print(x)
hello there. How aRe you?
即使与 capitalize()
一起使用后,原始字符串也保持不变。
相关用法
- Python String capitalize()用法及代码示例
- Python String casefold()用法及代码示例
- Python String casefold方法用法及代码示例
- 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 | capitalize method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。