0
The exercise is this one:
Marcílio and Aurélio are disputing the election for president of the Academic Center. To be the candidate must have more votes than his opponent, and also a number of votes greater than the total of white votes. Write a program that receives 100 students' votes and displays a message informing the name of the chosen. If there is no winner, a message that a new vote will be required.
I tried so:
for cont in range(4):
votosAlunos = str.upper( input("digite seu voto:"))
if(votosAlunos == " Marcílio "):
votosM = votosM + 1
elif(votosAlunos == " Aurélio "):
votosA = votosA + 1
elif(votosAlunos == "Branco"):
votosB = votosB + 1
if(votosM > votosA) and (votosM > votosB):
print("Marcílio")
elif(votosA > votosM) and (votosA > votosB):
print(" Aurélio")
else:
print(" Nova votação")