Function Details: title

Description


Returns a titlecased version of the string where words start with an uppercase character and the remaining characters are lowercase.


Extended Description


The title() method returns a string where the first character of each word is uppercase and the remaining characters are lowercase. Words are separated by whitespace characters (space, tab, newline, etc.) or by specified unicode separators.


Read More about title from Python Documentation

Function Signature



Module: builtins

Class: str

Parameters



Return



Return Type


str

Output

Explanation