python islowerを使って小文字の判定を行う
環境
Python 3.9.13
Windows 10 Home 64bit
PyCharm 2022.2.1 (Community Edition)
構文
文字列.islower()
islowerを使用すると、文字列が全て小文字であるかを判定します。
使用例
print( "arkgame".islower() ) # True print( "Arkgame".islower() ) # False
実行結果
True
False