### Details python will do: ``` >>> import json >>> json.dumps({"test": float('nan')}) '{"test": NaN}' ``` but a literal `NaN` is not valid json. so, we need to figure out how to handle this.