I have the following situation: A repeat loop that asks for a name, and 2 notes, where the data entry should finish when you read an empty name, but the way below the second time the program runs the name is not asked, any tips on how to do?
nome = input("Nome: ")
while nome != "":
n1 = int(input("N1: "))
n2 = int(input("N2: "))