Created
June 25, 2023 13:07
-
-
Save CodeWithEdgard/c39e854abbec54284cb50c332d34f931 to your computer and use it in GitHub Desktop.
Login basico criado para atividade da Aula
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nome = input('Digite seu Nome: ') | |
senhaUsuario = input('Crie uma Senha de Usuario: ') | |
print('-' *10) | |
print(f'BEM VINDO {nome} ''DIGITE SUA SENHA PARA CONTINUAR: ') | |
senhaEntrada = input() | |
if senhaUsuario == senhaEntrada: | |
print('-' * 10) | |
print('BEM VINDO AO SISTEMA NEXUS') | |
else: | |
print('-' * 10) | |
print('SENHA INCORRETA') | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment