# Python CodeRecipe|swapcase()の使い方

Home String Methods

# swapcase()の例1

Make the lower case letters upper case and the upper case letters lower 
  case:

    txt = "Hello My Name Is PETER"x = txt.swapcase()print(x)

# swapcase()の定義及び使い方

swapcase()関数は、次の文字列を返します。 すべての大文字は小文字で、その逆も同様です。

# swapcase()の構文

string.swapcase()

# swapcase()の引数

パラメータがありません。

Home String Methods