每个单词首字母大写

将字符串中每个单词的首字母大写。

  • 使用 str.title() 将字符串中每个单词的首字母大写。
def capitalize_every_word(s):
  return s.title()

capitalize_every_word('hello world!') # 'Hello World!'