How to do searches inside the code in Python

0
Hello, I would like to make a code that when I type, for example, "product_name", it will check if there is any word with the name that I typed and return a value, example "200 reais". But I have no idea how to start, I'll be grateful if anyone can help me!

    
asked by anonymous 28.05.2017 / 18:48

1 answer

5

You can use a dictionary to do what you want, see:

v = {
     'Celular':"200",
     "Bolsa":"200", 
     "Garrafa":"2"
     }                                    # Os valores também podem ser inteiros
r = input("Digite o valor do produto: ")  # Desde que aqui também seja

print("Por esse preço nós possuimos: \n")
for i in v.keys():
    if r == v[i]:
        print(i)

Output:

>>> Digite o valor do produto: 200
>>> Por esse preço nós possuimos: 
>>> 
>>> Celular
>>> Bolsa
    
28.05.2017 / 19:29