title()方法返回所有单词第一个字母大写字符串的副本
语法
以下是 title() 方法的语法-
str.title();
参数
-
NA
返回值
这个方法返回所有单词第一个字母大写的字符串副本。
示例
下面的示例说明 istitle() 方法的使用。
#!/usr/bin/python3 str = "this is string example....wow!!!" print (str.title())
当我们运行上面的程序,会产生以下结果 -
This Is String Example....Wow!!!