Wednesday 27 March 2019

python - Limiting floats to two decimal points

I want a to be rounded to 13.95.



>>> a
13.949999999999999
>>> round(a, 2)
13.949999999999999


The round function does not work the way I expected.

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...