Python String islower() Method

Returns True if all characters in the string are lowercase. Symbols and numbers are ignored.

Syntax

Python
string.islower()

Example

Python
print('abc123, & def'.islower())
print('Abc & Def'.islower())

Output

True
False