1 2 3 4 5 6 7 8
try: import json except ImportError: print("SKIP") raise SystemExit print(json.dumps(1.2)) print(json.dumps({1.5: "hi"}))