我想使用 python 和 json 制作一个不和谐的帐户生成器,我可以使它生成,但我不能让它在生成后删除帐户,请帮忙。
代码:
@client.command()
async def gentest(ctx):
genembed = discord.Embed(
title="Minecraft NFA",
colour=discord.Color.green()
)
with open('alts.json', 'r') as f:
alts = json.load(f)
genembed.add_field(name="Account:", value=random.choice(alts), inline=False)
with open('alts.json', 'w') as f:
alts = alts.pop(alts)
await ctx.author.send(embed=genembed)
await ctx.send(f"{ctx.author.mention} Please check your DMs!")
但是当我尝试 gen (使用 alts.pop)时,它会发送以下错误:
命令引发异常:TypeError:“list”对象无法解释为整数
泛舟湖上清波郎朗
MYYA
相关分类