TypeError: Object of type ‘builtin_function_or_method‘ is not JSON serializable
目录一、问题描述二、问题解决一、问题描述使用python3在将字典保存为json的时候报错:TypeError: Object of type 'builtin_function_or_method' is not JSON serializable. json.dump(data, open(os.path.join(save_dir, save_name), 'w', encoding='utf-8'), indent=4)二、问题解决因为在data字典类型数..