Python String title() Method


Advertisements


Description

The method title() 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.

Live Demo
#!/usr/bin/python

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

When we run above program, it produces following result −

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

python_strings.htm

Advertisements