はじめに
Pythonでは、組み込み関数を使って文字列の各単語の先頭文字を大文字にすることができます。このチャレンジでは、文字列引数を受け取り、各単語の先頭文字を大文字にした新しい文字列を返す関数を書くよう求められます。
Skills Graph
%%%%{init: {'theme':'neutral'}}%%%%
flowchart RL
python(("Python")) -.-> python/BasicConceptsGroup(["Basic Concepts"])
python(("Python")) -.-> python/FunctionsGroup(["Functions"])
python/BasicConceptsGroup -.-> python/comments("Comments")
python/FunctionsGroup -.-> python/function_definition("Function Definition")
subgraph Lab Skills
python/comments -.-> lab-13595{{"単語の先頭文字を大文字にする"}}
python/function_definition -.-> lab-13595{{"単語の先頭文字を大文字にする"}}
end