Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import Answer from "@site/src/components/Answer";

# 式と演算子

## 式と演算子

Python で計算をしてみましょう。次のように書くと、演算をすることができます。

<ViewSource path="_samples/sum.ipynb" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ import Answer from "@site/src/components/Answer";

# 変数

## 変数

前項のようにして、10℃ での音速を求めてみましょう。

$$
Expand Down Expand Up @@ -34,7 +36,7 @@ Python では定数は使えないようです。慣習的に定数は大文字

### 問題

[式と演算子の項](/docs/python/expressions/#問題)の問題を変数を使って解いてみましょう。
[式と演算子の項](/docs/python/03expressions/#問題)の問題を変数を使って解いてみましょう。

<Answer>
<ViewSource path="_samples/cube.ipynb" />
Expand Down