I’m coding a discord bot in discord.py and I want people to be able to retrieve multiple different random values from a list. Here’s an example
list = [‘a’, ‘b’, ‘c’, ‘d’, ‘e’]
@client.command
async def pick(ctx, amount):
await ctx.send(f’{random.choice(list)}’)
I’m getting stuck here. Any help is appreciated.