how to make each letter of word capital python code example
Example: capitalize first letter of each word python
"hello world".title()
'Hello World'
>>> u"hello world".title()
u'Hello World'
"hello world".title()
'Hello World'
>>> u"hello world".title()
u'Hello World'