Created
March 7, 2013 02:34
-
-
Save sfiera/5105140 to your computer and use it in GitHub Desktop.
This file contains 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 | |
Python 2.7.3 (default, Nov 17 2012, 19:54:34) | |
[GCC 4.2.1 Compatible Apple Clang 4.1 ((tags/Apple/clang-421.11.66))] on darwin | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> 1.999 | |
1.999 | |
>>> 1.99999999 | |
1.99999999 | |
>>> 1.999999999999999 | |
1.999999999999999 | |
>>> 1.9999999999999999 | |
2.0 | |
>>> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment