Table of Contents
The istitle() returns True if the string is a titlecased string. If not, it returns False.
The syntax of istitle()
method is:
string.istitle()
1. istitle() Parameters
The istitle()
method doesn’t take any parameters.
2. Return Value from istitle()
The istitle()
method returns:
True
if the string is a titlecased stringFalse
if the string is not a titlecased string or an empty string
3. Example 1: Working of istitle()
s = 'Python Is Good.' print(s.istitle()) s = 'Python is good' print(s.istitle()) s = 'This Is @ Symbol.' print(s.istitle()) s = '99 Is A Number' print(s.istitle()) s = 'PYTHON' print(s.istitle())
Output
True False True True False
4. Example 2: How to use istitle()?
s = 'I Love Python.' if s.istitle() == True: print('Titlecased String') else: print('Not a Titlecased String') s = 'PYthon' if s.istitle() == True: print('Titlecased String') else: print('Not a Titlecased String')
Output
Titlecased String Not a Titlecased String
Related posts:
Python Program to Find Hash of File
Python iter()
Deep Learning from Scratch - Building with Python form First Principles - Seth Weidman
Python sum()
Python Objects and Classes
Python Set difference()
Python Machine Learning Cookbook - Practical solutions from preprocessing to Deep Learning - Chris A...
Python Program to Append to a File
Python Program to Get the Full Path of the Current Working Directory
Python Anonymous / Lambda Function
Python Deeper Insights into Machine Learning - Sebastian Raschka & David Julian & John Hearty
Python Program to Shuffle Deck of Cards
Python Program to Check if a Number is Odd or Even
Python filter()
Python callable()
How to Remove the Last Character of a String?
Python Program to Display Powers of 2 Using Anonymous Function
Python slice()
Python Artificial Intelligence Project for Beginners - Joshua Eckroth
Python Program to Find ASCII Value of Character
Python List
Python input()
Adding a Newline Character to a String in Java
Python Program to Reverse a Number
Python Program to Extract Extension From the File Name
Python Function Arguments
Python Program to Print the Fibonacci sequence
Python Program to Count the Number of Digits Present In a Number
Python timestamp to datetime and vice-versa
Python break and continue
Applied Text Analysis with Python - Benjamin Benfort & Rebecca Bibro & Tony Ojeda
Python while Loop