好吧,所以我想为不协调的bot发出命令,当用户执行该命令时,该bot会以“您的发货率为[随机百分比]”响应,我该怎么做?
答案 0 :(得分:1)
您可以使用随机库函数。如randint()
。 w3Schools on randint()
import random
@bot.command()
async def commandName(ctx):
percentage = (random.randint(0, 100))
await ctx.send(f'Your shiprate is {percentage}')