faire la première lettre d'une chaîne en haut
>>> "hello world".title()
'Hello World'
>>> u"hello world".title()
u'Hello World'
Helpless Hamster
>>> "hello world".title()
'Hello World'
>>> u"hello world".title()
u'Hello World'