-1
while True:
lista = []
ingresso = (str(input()))
lista.append(ingresso)
if ingresso== "FIM":
break
elif ingresso != "NORMAL" and ingresso != "VIP" and ingresso != "FIM":
print(f"Comando {ingresso} não existe")
Guys I’m trying to make a program that is to count the number of tickets a vip ticket and another normal if I type wrong something I have to type order later, so far so good, but I also wanted to make it appear at the exit how many tickets Vips and normal were counted I tried to put in a list and use Count() but only the end that goes to the list the end would be to finish the variables of the input how to proceed ?
thank you very much with some modifications I managed to use the counter in my valeu ai helped demaissss :)
– Jedi Negão