1 2 3 4 5 6 7 8 9 10
try: import ujson as json except ImportError: try: import json except ImportError: print("SKIP") raise SystemExit print(json.dumps(1.2))