String title returns first letter of word in capital and rest in lower cases. It is similar to proper function in excel.
How to use Str.Title() in Python:
As in below image we can see a is string with all letters in lower case and b is string with all letters upper case and lower case.when we apply str.title function to both string it results in first letter capital of string rest small.
[…] 37.Str.title: It turns first character of the word in capital letter. […]