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!!!