0
I want the message "Uhul! Your secret friend will love", but the variable present always gives as answer "Try Again", example: in the variable 'personal gifts' I type 'pedro camisa keyboard chair', in the variable present when I typed 'pedro camisa' was to say that I hit, but it says "Try Again", how to fix this error in my code.
Code:
participantes = int(input('Número de participantes: '))
lista_pessoas = []
for p in range(participantes):
pessoa_presentes = input('Digite seu nome e os 3 presentes desejados: ')
lista_pessoas.append(pessoa_presentes)
print(lista_pessoas)
presente = ''
while presente != 'FIM':
presente = input('Qual presente você deseja dar: ')
if presente != 'FIM':
if presente in lista_pessoas:
print('Uhul! Seu amigo secreto vai adorar')
else:
print('Tente Novamente!')
In this code the exit, when we hit, is coming out again and again and the loop never ends.
– Pedro Bernardo
Exactly, you can put
presente = 'FIM'
or simply use the commandbreak
after the print– Fernando dos Santos