/  Islower() method in Python String Module

Islower() method in Python String Module


Islower method in string module returns the output as TRUE if the string has all the alphabets in lowercase, or else it return the output as FALSE.


Syntax:

str.islower()


Example-1:

text = "the city has beautiful resorts"
x = text.islower()
print(x)


Output:


Example-2:

text = "Zermatt has renowned ski resort"
x = text.islower()
print(x)


Output :