Python字符串标题方法
Python中的 title()函数是Python字符串方法,用于将字符串中每个单词的第一个字符转换为大写,其余字符转换为小写,并返回一个新的字符串。
句法:
str.title()
parameters:str is a valid string which we need to convert.
return: This function returns a string which
has first letter in each word is uppercase and all
remaining letters are lowercase.
Python
# Python title() Method Example
str1 = 'geeKs foR geEks'
str2 = str1.title()
print 'First Output after Title() method is = ', str2
# observe the original string
print 'Converted String is = ', str1.title()
print 'Original String is = ', str1
# Performing title() function directly
str3 = 'ASIPU pawan kuMAr'.title()
print 'Second Output after Title() method is = ', str3
str4 = 'stutya kUMari sHAW'.title()
print 'Third Output after Title() method is = ', str4
str5 = '6041'.title()
print 'Fourth Output after Title() method is = ', str5
输出:
First Output after title() method is = Geeks For Geeks
Converted String is = Geeks For Geeks
Original String is = geeKs foR geEks
Second Output after title() method is = Asipu Pawan Kumar
Third Output after title() method is = Stutya Kumari Shaw
Fourth Output after title() method is = 6041