string.capwords() 将每个单词首字母大写

string.capwords() 将每个单词首字母大写

代码:

复制代码
import string

s = ' The quick brown fox jumped over the lazy dog. '

print s
print string.capwords(s)
复制代码

结果:

 

The quick brown fox jumped over the lazy dog.
The Quick Brown Fox Jumped Over The Lazy Dog.
请按任意键继续. . .

 

string模块中的capwords()函数,除了可以将每个单词首字母大写以外,它还能够去除两端的空格,再将连续的空格用一个空格代替。

posted @ 2016-06-11 15:17  菜鸡一枚  阅读(636)  评论(0编辑  收藏  举报