The first part that is to detect the position of the list I have already achieved, the problem is at the time of the else , I would like to know a method that causes the else not to be printed together with if .
Code and the "database" below:
Code
def listar_critico():
arq = open("arquivo.csv", "r")
linhas = arq.readlines()
critico = input("Digite o nome do crítico que você deseja imprimir o registro..: ")
for linha in linhas:
campos = linha.split(";")
if critico in campos:
print("\nCrítico: %s\nEmail: %s" % (campos[2], campos[3]))
else:
print("%s não está registrado no banco de dados." % critico)
arq.close()
Database - > link