小码哥的IT人生

Python 字符串 capitalize() 方法

Python基础 2022-06-06 15:06:45小码哥的IT人生shichen

Python 字符串 capitalize() 方法

实例

大写这句话的第一个字母:

txt = "hello, and welcome to my world."
x = txt.capitalize()
print (x)

完整实例:

txt = "hello, and welcome to my world."
x = txt.capitalize()
print (x)

定义和用法

capitalize() 方法返回一个字符串,其中第一个字符为大写。

语法

string.capitalize()

参数值

无参数

更多实例

示例代码:

请看第一个字符是数字时会发生什么:

txt = "63 is my age."
x = txt.capitalize()
print (x)

完整实例:

txt = "63 is my age."
x = txt.capitalize()
print (x)

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024