Copyright © tutorialspoint.com

Python String title() Method

previous next


Description:

This method returns a copy of the string in which first characters of all the words are capitalized.

Syntax:

str.title();

Parameters:

Here is the detail of parameters:

Return Value:

It returns a copy of the string in which first characters of all the words are capitalized.

Example:

#!/usr/bin/python

str = "this is string example....wow!!!";
print str.title();

This will produce following result:

This Is String Example....Wow!!!

previous next

Copyright © tutorialspoint.com