回答編集履歴

2

修正

2020/12/30 14:38

投稿

tiitoi
tiitoi

スコア21956

test CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  浮動小数点演算の仕様です。
6
6
 
7
- 浮動小数点演算 丸め誤差」で検索すると、情報が得られます。
7
+ 「丸め誤差」で検索すると、情報が得られます。
8
8
 
9
9
 
10
10
 

1

修正

2020/12/30 14:38

投稿

tiitoi
tiitoi

スコア21956

test CHANGED
@@ -12,4 +12,18 @@
12
12
 
13
13
 
14
14
 
15
+ ```python
16
+
17
+ from decimal import *
18
+
19
+
20
+
21
+ ret = Decimal("100") * Decimal("1.1")
22
+
23
+ print(ret) # 110.0
24
+
25
+ ```
26
+
27
+
28
+
15
29
  [decimal --- 十進固定及び浮動小数点数の算術演算 — Python 3.9.1 ドキュメント](https://docs.python.org/ja/3/library/decimal.html)