String title() Method Syntax

string.title()

Parameters

  • title() doesn’t accept any parameter.

Return

string, converted to title case.

Python String Title method

Python String title() method returns a new string after converting the first letter of every word to uppercase(capital) and keeping the rest of the letters lowercase.

Example: Make string title case

Python3




print("usE stRing title Method".title())


Output

Use String Title Method

Similar Reads

String title() Method Syntax

...

What is String title() Method?

string.title()...

More Example on String title() Method

String title() is an in-built function in Python that is used to change text in title format. It converts the first letter of every word to uppercase and other letters to lowercase and then returns this new string....

Limitations of String title() Method

...

Fixing the Limitations of title() Method

Here are some more examples on string title() method, for better understanding:...

FAQ on Python title() method

...