関数の機能:タイトルケースに変換した文字列を返却
>>> s = 'This is an example of title method'
>>> s.title()
'This Is An Example Of Title Method'
各単語の1文字目は大文字、残りは小文字となります。
関連項目 関数str.capitalizeの使い方の例 関数str.casefoldの使い方の例 関数str.lower, str.upperの使い方の例 関数str.swapcaseの使い方の例