Important Notice:

Course Content
The Calendar Module
Library Function/Predefined Functions
0/4
Sys Module
Library Function/Predefined Functions
0/2
OS Module
Library Function/Predefined Functions
0/2
Functions in Python (Chapter-10) M3-R5
About Lesson

islower():-

        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()

txt = “hello world!”

x = txt.islower()

print(x)

Output

True

a = “Hello world!”

b = “hello 123”

c = “mynameisAkhilesh”

print(a.islower())

print(b.islower())

print(c.islower())

Output

False

True

False

error: Content is protected !!