Python 3 - String title() Method


Description

The title() method returns a copy of the string in which first characters of all the words are capitalized.

Syntax

Following is the syntax for title() method −

str.title();

Parameters

NA

Return Value

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

Example

The following example shows the usage of title() method.

#!/usr/bin/python3

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

Result

When we run above program, it produces the following result −

This Is String Example....Wow!!!
python_strings.htm
Advertisements