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 ursus
Recipients ursus
Date 2018-08-08.12:26:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1533731199.22.0.56676864532.issue34358@psf.upfronthosting.co.za>
In-reply-to
Content
`from scipy import stats`

`a = stats.norm.cdf(2.1882658846227234)`

`round(a,4)` gives:
`0.9857`

`round(a,4)*100` one would expect to output 98.57.
It returns:
`98.57000000000001`

For comparison, if I multiply with 10 or 1000 the output is as expected.
History
Date User Action Args
2018-08-08 12:26:39ursussetrecipients: + ursus
2018-08-08 12:26:39ursussetmessageid: <1533731199.22.0.56676864532.issue34358@psf.upfronthosting.co.za>
2018-08-08 12:26:39ursuslinkissue34358 messages
2018-08-08 12:26:39ursuscreate