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)
复制代码

结果:

 

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

 

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

以上是关于string.capwords() 将每个单词首字母大写的主要内容,如果未能解决你的问题,请参考以下文章

python Python:string,capwords:将String转换为Titlecase

进阶第六课 Python模块之string

[单选题]将字符串中所有英文字母转为大写:

自动翻译程序员英语

Java命名规范

python编程题 提取首字符?