Example 1:
s = “title is a method in python”
x = s.title()
print(x)
Output:
Title Is A Method In Python
Explanation:
Here the first letter of all the words are converted to upper case. Since there is has a space before all the word excluding the first word.
*Have a closer attention to the next example!