string.capwords() 将每个单词首字母大写
Posted 菜鸡一枚
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了string.capwords() 将每个单词首字母大写相关的知识,希望对你有一定的参考价值。
string.capwords() 将每个单词首字母大写
代码:
import string
s = \' The quick brown fox jumped over the lazy dog. \'
print s
print string.capwords(s)
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.
请按任意键继续. . .
The Quick Brown Fox Jumped Over The Lazy Dog.
请按任意键继续. . .
string模块中的capwords()函数,除了可以将每个单词首字母大写以外,它还能够去除两端的空格,再将连续的空格用一个空格代替。
以上是关于string.capwords() 将每个单词首字母大写的主要内容,如果未能解决你的问题,请参考以下文章