Python 3 - 字符串 title() 方法
-
描述
这title()方法返回字符串的副本,其中所有单词的第一个字符都大写。 -
句法
以下是语法title()方法 -str.title();
-
参数
NA -
返回值
此方法返回字符串的副本,其中所有单词的第一个字符都大写。 -
例子
以下示例显示了 title() 方法的用法。#!/usr/bin/python3 str = "this is string example....wow!!!" print (str.title())
-
结果
当我们运行上面的程序时,它会产生以下结果 -This Is String Example....Wow!!!