python print characters with first character in uppercase 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'