标签: python python-2.7
为了把每个单词的第一个字母大写,我知道我们可以使用以下方法
category = "foo and bar" category.title()
如果我只希望foo和bar得到第一封信,而不是and
foo
bar
and
我正在寻找的最终结果是
Foo and Bar
有关如何实现这一目标的任何提示?我使用的是Python 2.7