例如:
大写字符串的第一个字母:
txt = "hello, and welcome to my world."
x = txt.capitalize()
print(x)
1、定义和用法
capitalize()
方法返回一个字符串,其中第一个字符为大写。
2、调用语法
string.capitalize()
3、参数说明
没有参数
4、使用示例
例如:
当第一个字符是数字时的示例:
txt = "36 is my age."
x = txt.capitalize()
print(x)