islowerの読み方

islowerの読み方

pythonで利用されるメソッドの1つである「islower」の読み方を掲載してます。

読み⽅

イズロウワー」と読みます。

英訳

「lower」は「下」という意味があります。

islowerとは

pythonで、文字列が全て小文字であるかをメソッドとなります。

print( "sebee".islower() )
# True

print( "SEbee".islower() )
# False