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

错误类型:TypeError: Object of type 'int64' is not JSON serializable
错误场景:对Numpy和Pandas结果进行json.dumps报错
错误分析:1. python3中没有int64这个数据类型,所有的整型都是int
2. 报错里的int64指的是<class 'numpy.int64'>,所以很有迷惑性
解决方案:转换成python3内置数据类型即可

posted @ 2019-03-29 14:40  Peterer~王勇  阅读(8933)  评论(0编辑  收藏  举报