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.

Author zach.ware
Recipients abahar1996, zach.ware
Date 2021-06-14.15:30:42
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1623684642.73.0.833145672469.issue44419@roundup.psfhosted.org>
In-reply-to
Content
The `/` operator does true division, which means the result will be a `float` rather than an `int`.  When the resultant float is large enough, precision will be lost.

You can use the `//` operator for floor (integer) division, where the result will remain as an integer.
History
Date User Action Args
2021-06-14 15:30:42zach.waresetrecipients: + zach.ware, abahar1996
2021-06-14 15:30:42zach.waresetmessageid: <1623684642.73.0.833145672469.issue44419@roundup.psfhosted.org>
2021-06-14 15:30:42zach.warelinkissue44419 messages
2021-06-14 15:30:42zach.warecreate