jrdioko
jrdioko

Reputation: 33467

Third-party titlecase method in Python

The standard string title() method in Python is pretty naive and doesn't correctly handle converting even fairly simple words and phrases to title case (hyphenated words, phrases with quotes, phrases with prepositions, etc.).

In Googling around, I found a few solutions in different languages to this problem. Can anyone recommend a good implementation of this in Python?

Upvotes: 1

Views: 386

Answers (1)

Related Questions