Python - TypeError: Object of type 'int64' is not JSON serializable

python中的字典转json时,报该错。
经过对字典的数据进行debug发现,字典中的value对应的类型是numpy.int64, 正常情况下应该是numpy.float64。因此手动将int类型转化为float即可。


图片.png

你可能感兴趣的:(Python - TypeError: Object of type 'int64' is not JSON serializable)