Table of Contents
The islower() method returns True if all alphabets in a string are lowercase alphabets. If the string contains at least one uppercase alphabet, it returns False.
The syntax of islower() is:
string.islower()
1. islower() parameters
The islower() method doesn’t take any parameters.
2. Return Value from islower()
The islower() method returns:
- True if all alphabets that exist in the string are lowercase alphabets.
- False if the string contains at least one uppercase alphabet.
3. Example 1: Return Value from islower()
s = 'this is good' print(s.islower()) s = 'th!s is a1so g00d' print(s.islower()) s = 'this is Not good' print(s.islower())
Output
True True False
4. Example 2: How to use islower() in a program?
s = 'this is good'
if s.islower() == True:
print('Does not contain uppercase letter.')
else:
print('Contains uppercase letter.')
s = 'this is Good'
if s.islower() == True:
print('Does not contain uppercase letter.')
else:
print('Contains uppercase letter.')
Output
Does not contain uppercase letter. Contains uppercase letter.
Related posts:
Introduction to Scientific Programming with Python - Joakim Sundnes
Python Program Read a File Line by Line Into a List
Python ord()
Python String lstrip()
Python Program to Split a List Into Evenly Sized Chunks
Python Program to Check If Two Strings are Anagram
Python Tuple count()
Convert String to Byte Array and Reverse in Java
Python Program to Display Calendar
Python Program to Convert Two Lists Into a Dictionary
Python Program to Display Powers of 2 Using Anonymous Function
Python String format_map()
Python sorted()
Machine Learning with Python for everyone - Mark E.Fenner
Python Set symmetric_difference()
Intelligent Projects Using Python - Santanu Pattanayak
Python Dictionary setdefault()
Python Program to Copy a File
Converting a List to String in Java
Python object()
Python Tuple index()
Python String zfill()
Node.js vs Python for Backend Development
Python Deep Learning Cookbook - Indra den Bakker
Python Inheritance
Python __import__()
Python Program to Remove Duplicate Element From a List
Python pow()
Python Set difference_update()
Python String isidentifier()
Python Machine Learning Third Edition - Sebastian Raschka & Vahid Mirjalili
Python timestamp to datetime and vice-versa