# Python CodeRecipe|istitle()の使い方
❮ Home ❮ String Methods
# istitle()の例1
Check if each word start with an upper case letter:
txt = "Hello, And Welcome To My World!"x = txt.istitle()
print(x)
# istitle()の定義及び使い方
istitle()関数は、 テキスト内の単語は大文字で始まり、残りの単語は 小文字、それ以外の場合はFalse。 記号と数字は無視されます。
# istitle()の構文
string.istitle()
# istitle()の引数
パラメータがありません。
# istitle()の例2
Check if each word start with an upper case letter:
a = "HELLO, AND WELCOME TO MY WORLD"b = "Hello"c = "22 Names"d =
"This Is %'!?"print(a.istitle())print(b.istitle())print(c.istitle())
print(d.istitle())
❮ Home ❮ String Methods