import discord
import random
from discord.ext import commands
client = commands.Bot(command_prefix=".")
@client.command()
async def qs(ctx):
m = ["a",
"d",
"f",
"g"]
await ctx.author.send(f'{random.choice(m)')
client.run('TOKEN')
Hi everyone, I have a list and every time someone uses the command, the bot send a random item of that list, but once that item is sent the item has to be deleted from the list.