# Python CodeRecipe|isupper()の使い方

Home String Methods

# isupper()の例1

Check if all the characters in the text are in upper case:

    txt = "THIS 
    IS NOW!"x = txt.isupper()
print(x)

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

isupper()関数は、 文字は大文字で、それ以外はFalseです。 数字、記号、スペースはチェックされず、アルファベットのみがチェックされます。

# isupper()の構文

string.isupper()

# isupper()の引数

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

# isupper()の例2

Check if all the characters in the texts are in upper case:

    a = "Hello World!"b = "hello 123"c = "MY 
    NAME IS PETER"
print(a.isupper())print(b.isupper())print(c.isupper())

Home String Methods