Python/ref string title

来自菜鸟教程
跳转至:导航、​搜索

<languages />

Python字符串title()方法

❮字符串方法

将每个单词的首字母大写:

    txt = "Welcome to my world"

x = txt.title()

print(x)

定义和用法

The title() 方法返回一个字符串,其中每个单词的第一个字符均为大写。像标题或标题。

如果单词包含数字或符号,则其后的第一个字母将转换为大写字母。

句法

string.title()
  

参数值

没有参数。

更多例子

将每个单词的首字母大写:

    txt = "Welcome to my 2nd world"

x = txt.title()

print(x)

请注意,非字母字母之后的第一个字母将转换为大写字母:

    txt = "hello b2b2b2 and 3g3g3g"

x = txt.title()

print(x)

❮字符串方法