はじめに
Web 開発では、ランダムな文字ではなく読みやすい単語を含む URL が一般的です。これらの読みやすい単語はスラッグと呼ばれます。スラッグは、URL をユーザーにとって使いやすく覚えやすくするために使用されます。このチャレンジでは、文字列を URL フレンドリーなスラッグに変換する関数を作成します。
Skills Graph
%%%%{init: {'theme':'neutral'}}%%%%
flowchart RL
python(("Python")) -.-> python/FunctionsGroup(["Functions"])
python(("Python")) -.-> python/ModulesandPackagesGroup(["Modules and Packages"])
python(("Python")) -.-> python/AdvancedTopicsGroup(["Advanced Topics"])
python(("Python")) -.-> python/BasicConceptsGroup(["Basic Concepts"])
python(("Python")) -.-> python/DataStructuresGroup(["Data Structures"])
python/BasicConceptsGroup -.-> python/comments("Comments")
python/DataStructuresGroup -.-> python/lists("Lists")
python/DataStructuresGroup -.-> python/tuples("Tuples")
python/FunctionsGroup -.-> python/function_definition("Function Definition")
python/ModulesandPackagesGroup -.-> python/importing_modules("Importing Modules")
python/ModulesandPackagesGroup -.-> python/standard_libraries("Common Standard Libraries")
python/AdvancedTopicsGroup -.-> python/regular_expressions("Regular Expressions")
subgraph Lab Skills
python/comments -.-> lab-13715{{"文字列を URL フレンドリーなスラッグに変換する"}}
python/lists -.-> lab-13715{{"文字列を URL フレンドリーなスラッグに変換する"}}
python/tuples -.-> lab-13715{{"文字列を URL フレンドリーなスラッグに変換する"}}
python/function_definition -.-> lab-13715{{"文字列を URL フレンドリーなスラッグに変換する"}}
python/importing_modules -.-> lab-13715{{"文字列を URL フレンドリーなスラッグに変換する"}}
python/standard_libraries -.-> lab-13715{{"文字列を URL フレンドリーなスラッグに変換する"}}
python/regular_expressions -.-> lab-13715{{"文字列を URL フレンドリーなスラッグに変換する"}}
end