Created
October 2, 2014 05:36
-
-
Save masak/675fbe68a6474a94b722 to your computer and use it in GitHub Desktop.
Python has 1 ** Inf as 1
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 | |
Python 2.7.6 (default, Mar 22 2014, 22:59:56) | |
[GCC 4.8.2] on linux2 | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> val = 1e3000 | |
>>> val | |
inf | |
>>> 1 ** val | |
1.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment