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 xiang.zhang
Recipients sfaisalawan, xiang.zhang
Date 2016-09-08.14:33:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1473345224.06.0.875094285549.issue28021@psf.upfronthosting.co.za>
In-reply-to
Content
You should use a//b instead of int(a/b).

>>> 11**19 - 11**19//23*23
15
>>> 11**19 - int(11**19/23)*23
1395
History
Date User Action Args
2016-09-08 14:33:44xiang.zhangsetrecipients: + xiang.zhang, sfaisalawan
2016-09-08 14:33:44xiang.zhangsetmessageid: <1473345224.06.0.875094285549.issue28021@psf.upfronthosting.co.za>
2016-09-08 14:33:44xiang.zhanglinkissue28021 messages
2016-09-08 14:33:44xiang.zhangcreate