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