Python 标题大小写

Fariba Laiq 2023年1月30日
  1. 在 Python 中使用 title() 函数的标题大小写
  2. 在 Python 中使用 titlecase 模块的标题大小写
Python 标题大小写

标题大小写是一种句子风格,每个主要单词的第一个字母都用大写字母书写,而对于次要单词(如冠词或介词),第一个字母小写。例如:I Am a Programmer from France 写在标题大小写中。

要在 Python 中把任何句子转换成标题大小写,我们可以使用带有字符串的 title() 函数或使用 titlecase 模块提供的 titlecase() 函数。

在 Python 中使用 title() 函数的标题大小写

我们可以用任何字符串调用 title() 函数来将其转换为标题大小写。这是一个可用于字符串的内置方法。

示例代码:

sentence = "i am a programmer from france and i am fond of python"
print("Sentence before:", sentence)
sentence = sentence.title()
print("Sentence now:", sentence)

输出:

Sentence before: i am a programmer from france and i am fond of python
Sentence now: I Am A Programmer From France And I Am Fond Of Python

在 Python 中使用 titlecase 模块的标题大小写

将句子转换为标题大小写的另一种方法是导入 titlecase 模块并将字符串传递给其函数 titlecase()。注意:此模块应先安装才能使用。

示例代码:

from titlecase import titlecase

sentence = "i am a programmer from france and i am fond of python"
print("Sentence before:", sentence)
sentence = titlecase(sentence)
print("Sentence now:", sentence)

输出:

Sentence before: i am a programmer from france and i am fond of python
Sentence now: I Am A Programmer From France And I Am Fond Of Python
作者: Fariba Laiq
Fariba Laiq avatar Fariba Laiq avatar

I am Fariba Laiq from Pakistan. An android app developer, technical content writer, and coding instructor. Writing has always been one of my passions. I love to learn, implement and convey my knowledge to others.

LinkedIn

相关文章 - Python String