# Python CodeRecipe|title()の使い方
❮ Home ❮ String Methods
# title()の例1
Make the first letter in each word upper case:
txt = "Welcome to my world"x = txt.title()print(x)
# title()の定義及び使い方
title()関数は、次の文字列を返します。 すべての単語の最初の文字は大文字です。ヘッダーやタイトルのように。 単語に数字または記号が含まれている場合は、その後の最初の文字が 大文字に変換されます。
# title()の構文
string.title()
# title()の引数
パラメータがありません。
# title()の例2
Make the first letter in each word upper case:
txt = "Welcome to my 2nd world"x = txt.title()print(x)
# title()の例3
Note that the first letter after a non-alphabet letter is converted into a
upper case letter:
txt = "hello b2b2b2 and 3g3g3g"x = txt.title()print(x)
❮ Home ❮ String Methods