为什么使用DECIMAL方法时0.2不等于0.2?

Why 0.2 is not equal to 0.2 when using the decimal method?(为什么使用DECIMAL方法时0.2不等于0.2?)
本文介绍了为什么使用DECIMAL方法时0.2不等于0.2?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我还是一个初学者,使用Python中内置的DECIMAL方法,它会略微关闭。

代码如下:

import decimal
print(decimal.Decimal(0.02))

以下是输出:

0.0200000000000000004163336342344337026588618755340576171875
我开始想,这怎么可能?0.02不是0.0200000000000000004163336342344337026588618755340576171875,但decimal模块将0.02感知为0.0200000000000000004163336342344337026588618755340576171875。是小数模块出错了,还是我做错了什么?

推荐答案

如果您的输入已经是浮点型,Decimal方法无法执行任何操作,它不会对其进行舍入。

Decimal不这样做的唯一方法是它需要一个字符串:

print(decimal.Decimal("0.02"))

这篇关于为什么使用DECIMAL方法时0.2不等于0.2?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)