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.
#!/usr/bin/python str = "this is string example....wow!!!"; print str.title();
Let us compile and run the above program, this will produce the following result:
This Is String Example....Wow!!!