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.

...