Files
micropython/tests/extmod/ujson_loads_float.py
2015-06-25 10:50:00 +01:00

14 lines
239 B
Python

try:
import ujson as json
except:
import json
def my_print(o):
print('%.3f' % o)
my_print(json.loads('1.2'))
my_print(json.loads('1e2'))
my_print(json.loads('-2.3'))
my_print(json.loads('-2e3'))
my_print(json.loads('-2e-3'))