共计 254 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,title 函数用于将字符串的每个单词的首字母转为大写,而其余字母转为小写。使用方法如下:
string = "hello world"
result = string.title()
print(result)
输出结果为:
Hello World
在上述例子中,我们定义了一个字符串变量 string
,其值为 "hello world"。然后,我们调用 title 函数 string.title()
,将字符串的每个单词的首字母转为大写字母,而其余字母转为小写字母。最后,我们打印输出结果。
丸趣 TV 网 – 提供最优质的资源集合!
正文完