📜  Python字符串| capwords() 方法(1)

📅  最后修改于: 2023-12-03 15:34:28.722000             🧑  作者: Mango

Python字符串 | capwords() 方法

在 Python 中,字符串是不可变的序列,它们可以是单词、句子、段落或文章等等。

Python Capwords() 返回一个字符串的每个单词的首字母都是大写的字符串,它可以快速的将一个句子中的单词大写。

语法

capwords() 函数定义如下:

str.capitalize()
参数

该方法不需要参数。

返回值

该方法返回一个每个单词首字母都大写的字符串。

下面是一个简单的例子:

from string import capwords

str1 = 'hello world'
str2 = 'my name is alice'
str3 = 'today is monday'

print(capwords(str1))
print(capwords(str2))
print(capwords(str3))

输出:

Hello World
My Name Is Alice
Today Is Monday
使用示例

你可以使用 capwords() 将多个字符串组合成一个标题。

from string import capwords

title = "this is a test of capwords() method"
print(capwords(title))

输出:

This Is A Test Of Capwords() Method

以上就是 capwords() 方法的用法,它可以快速的将一个句子中的每个单词大写,可以方便地处理字符串并使用。