Returns a Boolean stating whether the string is in lower case.
str. islower()
bool
#TODO
For 8-bit strings, this method is locale-dependent. Returns False if string is empty.
>>> ''.islower()
False
>>> 'abc123'.islower()
True
>>> 'abc'.islower()
True
>>> '123'.islower()
False
>>> 'Abc'.islower()
False
>>> '!@#'.islower()
False
>>> ' '.islower()
False
>>> 'ABC'.islower()
Falseisalnum(), isalpha(), isdigit(), islower(), isspace(), istitle(), isupper()