Python String istitle() Method

Last Updated : 30 Dec 2025

Python istitle() method returns True if the string is a titlecased string. Otherwise returns False.

Syntax of Python String istitle() Method

It has the following syntax:

Parameters

No parameter is required.

Return

It returns either True or False.

Different Examples for Python String istitle() Method

Let's see some examples of istitle() method to understand it's functionalities.

Example 1

It is a simple example to understand the Python String istitle() Method.

Example 2

Let us take another example to demonstrate the Python String istitle() Method.

Output:

True
False

Example 3

Let us take an example to demonstrate the Python String istitle() Method.

Output:

Not in title case
In title case
Not in title case
 
Next TopicPython Strings