1
Hello, people! How do I print a message on the screen saying that the keyboard input is not in the list? Note: If the keyboard input is in the list (for example if the user type 'password'), the program must print the position of the element in the list. I thought to add an 'Else' after the 'if' only so the program will print the message saying that the element is not in the list for each check, that is, it will print several "Not in" each time it checks that the element is not in the list, but I want him to print only once that message.
Follows the code:
senhas_comuns = ['qwerty', 'password', 'google', 'starwars', 'mrrobot', 'anonymous', 'mypassword', 'minhasenha', 'senha', 'admin', 'abcd', 'master', 'batman', 'superman', 'dragonball']
print('Vamos ver se você consegue acertar alguma das senhas mais usadas sem números.')
entrada = input('Chute: ')
#marcador da posição.
posicao = -1
for cadaSenha in senhas_comuns:
posicao += 1
if entrada == cadaSenha:
print('Você acertou! A senha ' + entrada + ' está na posição ' + str(posicao) + ' da lista.')