Python 字符串 title() 方法

实例

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

  1. txt = "Welcome to my world"
  2. x = txt.title()
  3. print(x)

定义和用法

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

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


语法

  1. string.title()
参数值

无参数.


更多实例

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

  1. txt = "Welcome to my 2nd world"
  2. x = txt.title()
  3. print(x)

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

  1. txt = "hello d2d2d2 and 5g5g5g"
  2. x = txt.title()
  3. print(x)

分类导航