在Python中,capitalize()方法將字符串的第一個字符轉換為大寫(大寫)字母。如果字符串的第一個字符為大寫,則返回原始字符串。
用法:
string_name.capitalize() string_name:It is the name of string of whose first character we want to capitalize.
參數:capitalize()函數不帶任何參數。
返回值:capitalize()函數返回以大寫字母開頭的字符串。
下麵是說明capitalize()函數的python程序:
# Python program to demonstrate the
# use of capitalize() function
# capitalize() first letter of
# string.
name = "geeks for geeks"
print(name.capitalize())
# demonstration of individual words
# capitalization to generate camel case
name1 = "geeks"
name2 = "for"
name3 = "geeks"
print(name1.capitalize() + name2.capitalize()
+ name3.capitalize())
輸出:
Geeks for geeks GeeksForGeeks
相關用法
注:本文由純淨天空篩選整理自Striver大神的英文原創作品 string capitalize() in Python。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。