<languages />
Python字符串capitalize()方法
❮字符串方法
例
大写这句话的第一个字母:
txt = "hello, and welcome to my world."
x = txt.capitalize()
print (x)
定义和用法
The
capitalize()
方法返回第一个字符为大写的字符串。
句法
string.capitalize()
参数值
没有参数
更多例子
例
查看第一个字符是数字时会发生什么:
txt = "36 is my age."
x = txt.capitalize()
print (x)
❮字符串方法