0 votes
in Python by
What Does The Title() Method Do In Python?

1 Answer

0 votes
by

Python provides the title() method to convert the first letter in each word to capital format while the rest turns to Lowercase.

#Example

str = 'lEaRn pYtHoN'

print(str.title())

The output:

Learn Python

Now, check out some general purpose Python interview questions.

Related questions

0 votes
asked Aug 29, 2020 in Python by Robindeniel
0 votes
asked Jan 11, 2021 in Python by SakshiSharma
...