![]() |
VOOZH | about |
The islower() method in Python checks if all characters in a string are lowercase. It returns True if all alphabetic characters are lowercase, otherwise, it returns False, if there is at least one uppercase letter.
Let's look at a quick example of using the islower() method.
True
Explanation: The string s contains only lowercase alphabetic characters, so islower() returns True.
Table of Content
s.islower()
Let’s look at a few examples of islower() method.
True False True False False
Explanation:
Related Articles: