Ask your own question, for FREE!
MIT 6.189 A Gentle Introduction to Programming Using Python (OCW) 11 Online
OpenStudy (anonymous):

Is there a more elegant way to validate the month input for this Zeller's Algorithm program? I've done the exercise (Opt. 1 in week 2 for #MOOC) and it works, but I wonder if there's a more elegant way to validate the input. It should check that you've entered a real month. I did: while month != 'march' and month != 'april' etc.

OpenStudy (anonymous):

Put all valid months in a list and check if the input exists in the list (or is member of the list)

OpenStudy (pdpinch):

This might save you some typing: import calendar while month not in calendar.month_name: # ask for another month

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!