This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Issue in subtraction of float numbers
Type: Stage: resolved
Components: Windows Versions: Python 3.9
process
Status: closed Resolution: wont fix
Dependencies: Superseder:
Assigned To: Nosy List: MrPhenomenal3110, paul.moore, rhettinger, steve.dower, tim.golden, zach.ware
Priority: normal Keywords:

Created on 2022-04-05 04:30 by MrPhenomenal3110, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (2)
msg416748 - (view) Author: Prem B. Shah (MrPhenomenal3110) Date: 2022-04-05 04:30
There is an issue when subtracting float numbers ...
for e.g.
print (5.67 - 5.6)
gives an output : 0.07000000000000028
msg416751 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2022-04-05 05:00
See https://docs.python.org/3/tutorial/floatingpoint.html
History
Date User Action Args
2022-04-11 14:59:58adminsetgithub: 91381
2022-04-05 05:00:45rhettingersetstatus: open -> closed

nosy: + rhettinger
messages: + msg416751

resolution: wont fix
stage: resolved
2022-04-05 04:30:24MrPhenomenal3110create