Python String islower() Method
Example
Check if all the characters in the text are in lower case:
txt = "hello
world!"
x = txt.islower()
print(x)
Try it Yourself »
Definition and Usage
The islower()
method returns True if all the
characters are in lower case, otherwise False.
Numbers, symbols and spaces are not checked, only alphabet characters.
Syntax
string.islower()
Parameter Values
No parameters.
More Examples
Example
Check if all the characters in the texts are in lower case:
a = "Hello world!"
b = "hello 123"
c = "mynameisPeter"
print(a.islower())
print(b.islower())
print(c.islower())
Try it Yourself »
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.