Skip to content

Instantly share code, notes, and snippets.

@CodeWithEdgard
Created June 25, 2023 13:07

Revisions

  1. CodeWithEdgard created this gist Jun 25, 2023.
    14 changes: 14 additions & 0 deletions senha.py
    Original 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')