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

2023-05-19,,

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

TypeError: Object of type 'int64' is not JSON serializable的相关教程结束。

《TypeError: Object of type 'int64' is not JSON serializable.doc》

下载本文的Word格式文档,以方便收藏与打印。