2
I would like to know how to perform this comparison without taking into account if the month typed is capitalized or lowercase, since the program only works if you type in lowercase.
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 I thank you for your attention.
Thank you for the reply. I am a beginner in programming and your help was of great value to me.
– Carlos Ferreira
Opa already implemented and worked perfectly. Vlw.
– Carlos Ferreira
You’re welcome @Carlosferreira, I’m glad you solved
– Miguel