Python中标题的正确大写

Jon*_*Ong 7 python

我正在寻找一个库,通过假设它是一个标题来正确地大写给定字符串.我知道有string.title(),但它会把每件作品都资本化,而不仅仅是应该大写的作品.有人知道任何图书馆?

不应在标题中大写的单词示例:

  • 命题(in,from等)
  • 文章(a,an,the)
  • 面包车

Dav*_*ver 14

谷歌的术语是"标题".在第一次打击titlecase:

$ pip install titlecase
...
$ python
...
>>> from titlecase import titlecase
>>> titlecase('the spam and eggs')
'The Spam and Eggs'
Run Code Online (Sandbox Code Playgroud)