Python 字符串 title() 方法

实例

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

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

定义和用法

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

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

语法

  1. string.title()

参数值

无参数.

更多实例

实例

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

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

实例

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

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