Example & Tutorial understanding programming in easy ways.

What function of Python we use to make every first alphabet of each word in string will be of Upper case ?

We use title() function to do this 

like:

s="This is the programming language"

s.title()

// it will return "This Is The Programming Language"

Read More →