F
F
forzum_a2022-03-08 20:56:03
Python
forzum_a, 2022-03-08 20:56:03

How can I make the command case insensitive?

I need to make a command in the discord bot that will work regardless of case, that is, I write the command !answer or !Answer and it works. Here is the code:

<

@client.command( pass_context = True )
async def Answer (ctx, text):
    variable = [
        "Конечно да",
        "Конечно нет",]
    await ctx.send("{}".format(random.choice(variable)))

Answer the question

In order to leave comments, you need to log in

1 answer(s)
I
i3a4em, 2022-03-10
@forzum_a

string.lower() as an option

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question