G
G
Goshujin2021-05-14 21:02:41
Python
Goshujin, 2021-05-14 21:02:41

How to get a trigger from a dictionary?

It’s a little unclear to me how to work with dictionaries, so I want to ask you for help.
It is necessary that when sending a message that will be a key, the bot sends its value. Please tell me how this can be done.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
D
Daniil Shevkunov, 2021-05-15
@Goshujin

First, at the expense of dictionaries: they are like lists, but instead of an index, you need to insert a key.
For example:
list:
spisok = ['hello', 'world']
print(spisok[0]) # Returns hello
dictionary:
slovar = {'hello': 'hello', 'world': 'world}
print(slovar[' hello']) # Returns hello
now about your case:
for example, you have a dictionary slv
you receive a message with the text massage_text
you need to send a message slv[massage_text] in response

M
Maxim Nevzorov, 2021-05-15
@fixator10

Check for the existence of a key in the dictionary and then send its value:

if ctx.message.content in trigger_dict:
    await ctx.send(trigger_dict[ctx.message.content])

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question