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