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
2 changes: 1 addition & 1 deletion docs/01python/03expressions/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Python では足し算以外にも次のように様々な演算をすること

### 練習問題

20 での華氏温度を求めてみましょう。華氏温度は、$F$ を華氏温度、$C$ を摂氏温度として次のような式で求められます。
20°C での華氏温度を求めてみましょう。華氏温度は、$F$ を華氏温度、$C$ を摂氏温度として次のような式で求められます。

$$
F=\frac{9}{5}C+32
Expand Down
6 changes: 3 additions & 3 deletions docs/01python/04variables/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import Answer from "@site/src/components/Answer";

## 変数

10 での音速を求めてみましょう。$V$ を音速、$t$ を摂氏温度とすると、音速はおおよそ次のような式で求められます。
10°C での音速を求めてみましょう。$V$ を音速、$t$ を摂氏温度とすると、音速はおおよそ次のような式で求められます。

$$
V=331.5+0.6t
Expand Down Expand Up @@ -43,7 +43,7 @@ $$

<ViewSource path="/variables/sound_velocity_revised.ipynb" />

このようにすれば、例えば 10 ではなく 20 のときの音速を求めたくなったときに次のように `t = 20` とするだけでよくなり、より簡単にプログラムを変更することができます。
このようにすれば、例えば 10°C ではなく 20°C のときの音速を求めたくなったときに次のように `t = 20` とするだけでよくなり、より簡単にプログラムを変更することができます。

<ViewSource path="/variables/sound_velocity_revised_20degree.ipynb" />

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

### 練習問題 1

[算術演算子の項](/docs/01python/03expressions/#問題)で解いた問題を変数を使って解いてみましょう。20 での華氏温度を求めてみましょう。次のような式で表せます。
[算術演算子の項](/docs/01python/03expressions/#問題)で解いた問題を変数を使って解いてみましょう。20°C での華氏温度を求めてみましょう。次のような式で表せます。

$$
F=\frac{9}{5}C+32
Expand Down