python
1def postTaxPrice(price): 2 ans = price * 1.10 3 return ans 4 5print(postTaxPrice(100),"円") 6print(postTaxPrice(128),"円") 7
python shell
110.00000000000001 円
140.8 円
なぜ、110.00000000000001このような数字になるのか教えてください。
回答1件
あなたの回答
tips
プレビュー
投稿2019/11/05 07:14
python
1def postTaxPrice(price): 2 ans = price * 1.10 3 return ans 4 5print(postTaxPrice(100),"円") 6print(postTaxPrice(128),"円") 7
python shell
110.00000000000001 円
140.8 円
なぜ、110.00000000000001このような数字になるのか教えてください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/05 07:22
2019/11/05 07:38 編集
2019/11/05 08:13
2019/11/05 09:08
2019/11/05 09:29
2019/11/05 09:56