共计 341 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,可以使用字符串的 capitalize() 方法来将单词的首字母大写。该方法会返回一个新的字符串,其中第一个字符将会被转换为大写,而其他字符将会被转换为小写。下面是一个示例:
word = "hello"
new_word = word.capitalize()
print(new_word) # 输出 "Hello"
如果你想将整个字符串中的每个单词的首字母都大写,可以使用字符串的 title() 方法。该方法会返回一个新的字符串,其中每个单词的首字母都会被转换为大写。下面是一个示例:
sentence = "hello world"
new_sentence = sentence.title()
print(new_sentence) # 输出 "Hello World"
丸趣 TV 网 – 提供最优质的资源集合!
正文完