大家好,所以我一直在尝试编写一个代码,其中不和谐机器人提到我服务器中的随机用户,我已经编写了代码,但机器人一直在提及自己
from random import choice
@client.command(pass_context=True)
async def best(ctx):
user = choice(ctx.message.channel.guild.members)
await ctx.send(f'{user.mention} is the best player')
答案 0 :(得分:1)
你必须用 random.choice 代替choice
user = random.choice(ctx.message.channel.guild.members)
random.choice 将选择一个随机用户。选择什么都不做