Problem to show the value in the dictionary that corresponds to the user response

0
bebidas = {'Suco de laranja': 5.99, 'Suco de uva': 5.99, 'Suco de açaí': 5.99, 'Coca Cola(lata)': 6.50, 'Vitamina': 7.50 }
simounão = int(input('Olá, gostaria de ver nosso menu\n\n[1]Sim\n[2]Não\n\n'))
while simounão != 1:
    simounão = int(input('Olá, gostaria de ver nosso menu\n\n[1]Sim\n[2]Não\n\n'))
escolha1 = str(input('Qual suco você deseja?\n\n[ ]Suco de laranja\n[ ]Suco de uva\n[ ]Suco de açaí\n[ ]Coca Cola(lata)\n[ ]Vitamina\n'))
for escolha1 in bebidas:
#Não sei o que colocar dentro do print abaixo, se a resposta da "escolha1" for, por exemplo, Suco de laranja    
    print()
    
asked by anonymous 07.10.2017 / 22:27

1 answer

2

To access the key of a dictionary use the following syntax:

  

nomedadirectory [nomedachave]

I've improved your code, here it is:

bebidas = {'Suco de laranja': 5.99, 'Suco de uva': 5.99, 'Suco de açaí': 5.99, 'Coca Cola(lata)': 6.50, 'Vitamina': 7.50 }
    while (True):
        sn = int(input('Olá, gostaria de ver nosso menu:\n\n[1]Sim\n[2]Não\n\n'))
        if sn!=1: break
        escolha1 = str(input('Qual suco você deseja?\n\n[1]Suco:'))    
        if escolha1 in bebidas:print(bebidas[escolha1])#acessando o dicionário.
        else: print("Opção não encontrada")

Very important tip to be corrected right now that you are learning to program.

  

1 - NEVER USE accents to name variables.

    
07.10.2017 / 23:05