0
I need to check if the variable was filled with a name, I tried to check with If and break but the field keeps filling without typing any word.... Below is the code I’m making...
opcao = 0
while opcao != 6:
print("""\033[32m
Em relação aos contatos do sistema, você deseja...
1 - Inserir
2 - Buscar
3 - Listar
4 - Alterar
5 - Excluir
6 - Voltar
\033[0;0m""")
opcao = int(input("\033[32mInforme a opção desejada: \033[0;0m"))
if opcao == 1:
print("\n\033[47m\033[30m--- Digite os dados do contato ---\033[0;0m\n")
n = input("Nome: ")
t = input("Telefone: ")
e = input("E-mail: ")
i = int(input("Id: "))
if n == "":
print("\n\033[47m\033[30mEspaço vazio! Digite um nome...\033[0;0m")
if t == "":
print("\n\033[47m\033[30mEspaço vazio! Digite um login...\033[0;0m")
if e == "":
print("\n\033[47m\033[30mEspaço vazio! Digite um senha...\033[0;0m")
print("\n\033[47m\033[30m--- Contato inserido com sucesso ---\033[0;0m\n")
inserir_contato(conexao, n, t, e, i)
What part of the code did you use the
break
?– Woss