json.dumps 执行时会提示 TypeError:
(Pdb) cc == {'y': 17318, 'info_total_periods': 12}
True
(Pdb) cc is {'y': 17318, 'info_total_periods': 12}
False
(Pdb) json.dumps(cc)
*** TypeError: 17318 is not JSON serializable
(Pdb) json.dumps({'y': 17318, 'info_total_periods': 12})
'{"y": 17318, "info_total_periods": 12}'
为什么会这样?有什么解决方法没?