Chapters
Python114 chapters

ReferenceString methods

str.title()

Upper-cases the first letter of each word.

Signature

text.title()

Returns

A new string.

Example

Python
print("ada lovelace".title())
print("it's fine".title())

Output

Ada Lovelace
It'S Fine

See also