Python 3 – String title() Method
Python 3 – String title() Method Description title() method returns a copy of a string with the first letter of each word capitalized. Syntax Following is the syntax of the title() method − str.title(); Parameters NA Return Value This method…