gpt4 book ai didi

python-3.7 - 我怎样才能成功加载这个json文件?

转载 作者:行者123 更新时间:2023-12-04 10:51:03 25 4
gpt4 key购买 nike

我正在构建一个不和谐的机器人,它会打反人类的牌。问题是当我尝试加载 JSON 文件时,程序不起作用。

`@bot.command(pass_context=True)
async def loadCards(ctx):
with open('wcards.json') as f:
wtcards = json.load(f)
with open('bcards.json') as f:
bkcards = json.load(f)
if len(wtcards) > 1 and len(bkcards) > 1:
await ctx.send('Cards Loaded')`

最佳答案

相信你在使用open()时需要用到读写参数。
例如

@bot.command(pass_context=True)
async def loadCards(ctx):
with open('wcards.json', 'r') as f:
wtcards = json.load(f)
with open('bcards.json', 'r') as f:
bkcards = json.load(f)
if len(wtcards) > 1 and len(bkcards) > 1:
await ctx.send('Cards Loaded')

关于python-3.7 - 我怎样才能成功加载这个json文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59472333/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com