python capitalize first letter only code example
Example 1: capitalize first letter of each word python
"hello world".title()
'Hello World'
>>> u"hello world".title()
u'Hello World'
Example 2: python capitalize first letter of string without changing the rest
string[0].upper() + string[1:]