回答編集履歴
1
一部引用
test
CHANGED
@@ -10,6 +10,14 @@
|
|
10
10
|
|
11
11
|
- [15. 浮動小数点演算、その問題と制限 — Python 3.8.3 ドキュメント](https://docs.python.org/ja/3/tutorial/floatingpoint.html)
|
12
12
|
|
13
|
+
- [[Python] 浮動小数点数floatの比較は要注意!! - Qiita](https://qiita.com/k_yamashita/items/e7180809d5fd95f454b9)
|
13
14
|
|
14
15
|
|
16
|
+
|
17
|
+
> 2つの値が近似しているか判定: math.isclose()
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
> Python3.5で追加された関数なのでそれより前のバージョンでは使えない。
|
22
|
+
|
15
|
-
|
23
|
+
> 以下のように、第一引数aと第二引数bに指定した値が厳密に等価でなくても近似値であればTrueを返す。
|