本文介绍了如何修复"UnicodeDecodeError:"cp949"编解码器无法解码位置24的字节0xeb:非法多字节序列"的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我只是用python3做不和谐的机器人
I'm just making discord bot with python3
@client.event
async def on_message(message):
#if bot ignore
if message.author.bot:
return None
if message.content.startswith('!meal'):
with open('menu.json') as json_file:
data = json.load(json_file)
channel = message.channel
await channel.send('This is meal info!')
await channel.send(data())
但我知道了
UnicodeDecodeError: 'cp949' codec can't decode byte 0xeb in position 24: illegal multibyte sequence
此错误..如何自动打开此json文件?
this errors.. how can I open this json file automatically?
推荐答案
打开JSON时,您可能需要指定一种编码,如下所示:
You may need to specify an encoding when opening the JSON, like this:
with open('menu.json', encoding='utf-8') as json_file:
将 utf-8
替换为保存 menu.json
的任何编码方式.
Where you substitute utf-8
with whatever encoding you saved menu.json
with.
这篇关于如何修复"UnicodeDecodeError:"cp949"编解码器无法解码位置24的字节0xeb:非法多字节序列"的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!