Created
June 25, 2023 13:07
Revisions
-
CodeWithEdgard created this gist
Jun 25, 2023 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ 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')