Skip to content

Instantly share code, notes, and snippets.

@CodeWithEdgard
Created June 25, 2023 13:07
Show Gist options
  • Save CodeWithEdgard/c39e854abbec54284cb50c332d34f931 to your computer and use it in GitHub Desktop.
Save CodeWithEdgard/c39e854abbec54284cb50c332d34f931 to your computer and use it in GitHub Desktop.
Login basico criado para atividade da Aula
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