您的当前位置:首页正文

Python 报错:ValueError: binary mode doesn‘t take an encoding argument

2024-11-29 来源:个人技术集锦

Python 报错:ValueError: binary mode doesn’t take an encoding argument

当时是打开了一个json文件用于写入信息,
当时打开文件的格式如下

json_msg_out = open('json_msg_out', 'wb', encoding='utf-8')

然后写入的信息如下

json.dump(str('string')+str(str(float))), json_msg_out, ensure_ascii=False)

然后程序运行的时候就报错

ValueError: binary mode doesn't take an encoding argument

显示全文