diff --git a/docs/python/google-colaboratory/getting-started.jpg b/docs/python/01google-colaboratory/getting-started.jpg similarity index 100% rename from docs/python/google-colaboratory/getting-started.jpg rename to docs/python/01google-colaboratory/getting-started.jpg diff --git a/docs/python/google-colaboratory/index.mdx b/docs/python/01google-colaboratory/index.mdx similarity index 100% rename from docs/python/google-colaboratory/index.mdx rename to docs/python/01google-colaboratory/index.mdx diff --git a/docs/python/google-colaboratory/new-file.jpg b/docs/python/01google-colaboratory/new-file.jpg similarity index 100% rename from docs/python/google-colaboratory/new-file.jpg rename to docs/python/01google-colaboratory/new-file.jpg diff --git a/docs/python/google-colaboratory/run.jpg b/docs/python/01google-colaboratory/run.jpg similarity index 100% rename from docs/python/google-colaboratory/run.jpg rename to docs/python/01google-colaboratory/run.jpg diff --git a/docs/python/get-started/_samples/comment.ipynb b/docs/python/02get-started/_samples/comment.ipynb similarity index 100% rename from docs/python/get-started/_samples/comment.ipynb rename to docs/python/02get-started/_samples/comment.ipynb diff --git a/docs/python/get-started/_samples/hello-from-python.ipynb b/docs/python/02get-started/_samples/hello-from-python.ipynb similarity index 100% rename from docs/python/get-started/_samples/hello-from-python.ipynb rename to docs/python/02get-started/_samples/hello-from-python.ipynb diff --git a/docs/python/get-started/_samples/hello-world.ipynb b/docs/python/02get-started/_samples/hello-world.ipynb similarity index 100% rename from docs/python/get-started/_samples/hello-world.ipynb rename to docs/python/02get-started/_samples/hello-world.ipynb diff --git a/docs/python/get-started/index.mdx b/docs/python/02get-started/index.mdx similarity index 100% rename from docs/python/get-started/index.mdx rename to docs/python/02get-started/index.mdx diff --git a/docs/python/expressions/_samples/cube.ipynb b/docs/python/03expressions/_samples/cube.ipynb similarity index 100% rename from docs/python/expressions/_samples/cube.ipynb rename to docs/python/03expressions/_samples/cube.ipynb diff --git a/docs/python/expressions/_samples/div.ipynb b/docs/python/03expressions/_samples/div.ipynb similarity index 100% rename from docs/python/expressions/_samples/div.ipynb rename to docs/python/03expressions/_samples/div.ipynb diff --git a/docs/python/expressions/_samples/exp.ipynb b/docs/python/03expressions/_samples/exp.ipynb similarity index 100% rename from docs/python/expressions/_samples/exp.ipynb rename to docs/python/03expressions/_samples/exp.ipynb diff --git a/docs/python/expressions/_samples/golden-ratio.ipynb b/docs/python/03expressions/_samples/golden-ratio.ipynb similarity index 100% rename from docs/python/expressions/_samples/golden-ratio.ipynb rename to docs/python/03expressions/_samples/golden-ratio.ipynb diff --git a/docs/python/expressions/_samples/multi.ipynb b/docs/python/03expressions/_samples/multi.ipynb similarity index 100% rename from docs/python/expressions/_samples/multi.ipynb rename to docs/python/03expressions/_samples/multi.ipynb diff --git a/docs/python/expressions/_samples/quotient.ipynb b/docs/python/03expressions/_samples/quotient.ipynb similarity index 100% rename from docs/python/expressions/_samples/quotient.ipynb rename to docs/python/03expressions/_samples/quotient.ipynb diff --git a/docs/python/expressions/_samples/remainder.ipynb b/docs/python/03expressions/_samples/remainder.ipynb similarity index 100% rename from docs/python/expressions/_samples/remainder.ipynb rename to docs/python/03expressions/_samples/remainder.ipynb diff --git a/docs/python/expressions/_samples/sub.ipynb b/docs/python/03expressions/_samples/sub.ipynb similarity index 100% rename from docs/python/expressions/_samples/sub.ipynb rename to docs/python/03expressions/_samples/sub.ipynb diff --git a/docs/python/expressions/_samples/sum.ipynb b/docs/python/03expressions/_samples/sum.ipynb similarity index 100% rename from docs/python/expressions/_samples/sum.ipynb rename to docs/python/03expressions/_samples/sum.ipynb diff --git a/docs/python/expressions/_samples/sum2.ipynb b/docs/python/03expressions/_samples/sum2.ipynb similarity index 100% rename from docs/python/expressions/_samples/sum2.ipynb rename to docs/python/03expressions/_samples/sum2.ipynb diff --git a/docs/python/expressions/index.mdx b/docs/python/03expressions/index.mdx similarity index 98% rename from docs/python/expressions/index.mdx rename to docs/python/03expressions/index.mdx index 371ab3c12..1ca64f2c7 100644 --- a/docs/python/expressions/index.mdx +++ b/docs/python/03expressions/index.mdx @@ -7,6 +7,8 @@ import Answer from "@site/src/components/Answer"; # 式と演算子 +## 式と演算子 + Python で計算をしてみましょう。次のように書くと、演算をすることができます。 diff --git a/docs/python/variables/_samples/cube.ipynb b/docs/python/04variables/_samples/cube.ipynb similarity index 100% rename from docs/python/variables/_samples/cube.ipynb rename to docs/python/04variables/_samples/cube.ipynb diff --git a/docs/python/variables/_samples/sound-velocity.ipynb b/docs/python/04variables/_samples/sound-velocity.ipynb similarity index 100% rename from docs/python/variables/_samples/sound-velocity.ipynb rename to docs/python/04variables/_samples/sound-velocity.ipynb diff --git a/docs/python/variables/_samples/sound-velocity2.ipynb b/docs/python/04variables/_samples/sound-velocity2.ipynb similarity index 100% rename from docs/python/variables/_samples/sound-velocity2.ipynb rename to docs/python/04variables/_samples/sound-velocity2.ipynb diff --git a/docs/python/variables/_samples/substitution.ipynb b/docs/python/04variables/_samples/substitution.ipynb similarity index 100% rename from docs/python/variables/_samples/substitution.ipynb rename to docs/python/04variables/_samples/substitution.ipynb diff --git a/docs/python/variables/index.mdx b/docs/python/04variables/index.mdx similarity index 89% rename from docs/python/variables/index.mdx rename to docs/python/04variables/index.mdx index de5a5bf26..50bf93ee8 100644 --- a/docs/python/variables/index.mdx +++ b/docs/python/04variables/index.mdx @@ -7,6 +7,8 @@ import Answer from "@site/src/components/Answer"; # 変数 +## 変数 + 前項のようにして、10℃ での音速を求めてみましょう。 $$ @@ -34,7 +36,7 @@ Python では定数は使えないようです。慣習的に定数は大文字 ### 問題 -[式と演算子の項](/docs/python/expressions/#問題)の問題を変数を使って解いてみましょう。 +[式と演算子の項](/docs/python/03expressions/#問題)の問題を変数を使って解いてみましょう。