Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save talentdeficit/28bd056bef10ef01d2b2b4a92d315c45 to your computer and use it in GitHub Desktop.
Save talentdeficit/28bd056bef10ef01d2b2b4a92d315c45 to your computer and use it in GitHub Desktop.
Python 2.7.13 (default, Dec 18 2016, 07:03:39)
[GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.42.1)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import json
>>> json.loads("1e309")
inf
>>> json.loads("1e308")
1e+308
>>> json.loads("1e1")
10.0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment