Python 3 – 字符串 capitalize() 方法

Python 3 – 字符串 capitalize() 方法

它返回仅其第一个字符大写的字符串副本。

语法

下面是 capitalize() 方法的语法 –

str.capitalize()

参数

NA

返回值

字符串

示例

#!/usr/bin/python3

str = "this is string example....wow!!!"
print ("str.capitalize() : ", str.capitalize())

结果

运行上述程序时,它会产生以下结果 −

str.capitalize() :  This is string example....wow!!!

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程