Last active
April 2, 2016 16:25
-
-
Save ahrvoje/eb7d8305d4395c270ee9754b46a03ecd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Python 3.5.1 64-bit | |
| print(float("2.4703282292062325e-324")) # 0 - correct | |
| print(float("2.4703282292062326e-324")) # 0 - correct | |
| print(float("2.4703282292062327e-324")) # 0 - correct | |
| print(float("2.4703282292062328e-324")) # 5e-324 - correct |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment