当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python string capitalize()用法及代码示例


在Python中,capitalize()方法将字符串的第一个字符转换为大写(大写)字母。如果字符串的第一个字符为大写,则返回原始字符串。

用法:

string_name.capitalize() 

string_name:It is the name of string of
             whose first character we want
             to capitalize.

参数:capitalize()函数不带任何参数。


返回值:capitalize()函数返回以大写字母开头的字符串。

下面是说明capitalize()函数的python程序:

# Python program to demonstrate the  
# use of capitalize() function  
  
# capitalize() first letter of  
# string. 
name = "geeks for geeks"
  
print(name.capitalize())  
  
# demonstration of individual words  
# capitalization to generate camel case 
name1 = "geeks"
name2 = "for"
name3 = "geeks"
print(name1.capitalize() + name2.capitalize() 
                         + name3.capitalize())

输出:

Geeks for geeks
GeeksForGeeks


相关用法


注:本文由纯净天空筛选整理自Striver大神的英文原创作品 string capitalize() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。