はじめに
加重平均は、一連の数値のそれぞれの値の重要性、つまり重みを考慮に入れた平均の一種です。このチャレンジでは、数値のリストの加重平均を計算する関数を作成します。
Skills Graph
%%%%{init: {'theme':'neutral'}}%%%%
flowchart RL
python(("Python")) -.-> python/BasicConceptsGroup(["Basic Concepts"])
python(("Python")) -.-> python/ControlFlowGroup(["Control Flow"])
python(("Python")) -.-> python/DataStructuresGroup(["Data Structures"])
python(("Python")) -.-> python/FunctionsGroup(["Functions"])
python/BasicConceptsGroup -.-> python/comments("Comments")
python/ControlFlowGroup -.-> python/for_loops("For Loops")
python/DataStructuresGroup -.-> python/lists("Lists")
python/DataStructuresGroup -.-> python/tuples("Tuples")
python/FunctionsGroup -.-> python/function_definition("Function Definition")
python/FunctionsGroup -.-> python/build_in_functions("Build-in Functions")
subgraph Lab Skills
python/comments -.-> lab-13741{{"加重平均計算関数"}}
python/for_loops -.-> lab-13741{{"加重平均計算関数"}}
python/lists -.-> lab-13741{{"加重平均計算関数"}}
python/tuples -.-> lab-13741{{"加重平均計算関数"}}
python/function_definition -.-> lab-13741{{"加重平均計算関数"}}
python/build_in_functions -.-> lab-13741{{"加重平均計算関数"}}
end