how to capitalize first letter in every word in 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'