# Python CodeRecipe|islower()の使い方

Home String Methods

# islower()の例1

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

    txt = "hello 
    world!"x = txt.islower()
print(x)

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

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

# islower()の構文

string.islower()

# islower()の引数

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

# islower()の例2

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

    a = "Hello world!"b = "hello 123"c = "mynameisPeter"
print(a.islower())print(b.islower())print(c.islower())

Home String Methods