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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。