我该如何在响应中显示随机百分比的命令?不和谐蟒蛇

时间:2020-06-19 14:30:31

标签: discord discord.py

好吧,所以我想为不协调的bot发出命令,当用户执行该命令时,该bot会以“您的发货率为[随机百分比]”响应,我该怎么做?

1 个答案:

答案 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}')