I would like to know how to do this comparison without taking into account if the month you typed is in uppercase or lowercase, since the program only works if I type in lower case.
prompt = "Digite o mês de seu nascimento (digite exit para sair): "
active = True
meses = ['janeiro', 'fevereiro', 'março', 'abril', 'maio','junho', 'julho',
'agosto', 'outubro', 'novembro', 'dezembro']
while active:
mensagem = input(prompt)
if mensagem == "exit":
active = False
elif mensagem in meses:
print("Você nasceu em %s" %(mensagem.title()))
else:
print("Este não é um mês válido, digite novamente.")
In advance thank you for your attention.