轻松上手,快乐学习!

Python 字符串 capitalize() 方法


实例

第个字母大写
txt = "hello, and welcome to my world."

x = txt.capitalize()

print (x)
运行实例 »

定义和用法

capitalize()方法返回第一个字符是大写的字符串。

语法

bool(object)

参数值

无参数

更多实例

实例

如果第一个字符是数字会发生什么变化:
 txt = "36 is my age."

x = txt.capitalize()

print (x)
运行实例 »