Example & Tutorial understanding programming in easy ways.

What is the use of the title() function in Python ?

title() is used to set the given string in title format 

like :

string is "this is the programming"

then title() make it "This Is The Programming"

Read More →