Python 3 – 字符串 title() 方法

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

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程