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 String endswith()
Python Namespace and Scope
Python File I/O Operation
Python Program to Check If Two Strings are Anagram
Python Program to Check if a Number is Odd or Even
Python Program to Count the Number of Each Vowel
Python Inheritance
Python String capitalize()
Python Program to Check if a Key is Already Present in a Dictionary
Python Deep Learning - Valentino Zocca & Gianmario Spacagna & Daniel Slater & Peter Roelants
Python exec()
Python Program to Differentiate Between type() and isinstance()
Python Program to Check if a Number is Positive, Negative or 0
Python super()
Python List index()
Python String isidentifier()
Python any()
JavaScript Methods of RegExp and String
Python Program to Display Powers of 2 Using Anonymous Function
Python type()
Python datetime
Node.js vs Python for Backend Development
Check If a String Is Numeric in Java
Java Program to Permute All Letters of an Input String
Python frozenset()
Python dict()
Python Set pop()
Python delattr()
Python Program to Find the Factors of a Number
Python String rjust()
Python Program to Slice Lists
Python Program to Display Calendar