Question: Dates, Again In Lab 5 you wrote a program that: Created two dictionaries: days, which uses the numbers 1 - 7 as the keys and

Dates, Again In Lab 5 you wrote a program that: Created two dictionaries: days, which uses the numbers 1-7 as the keys and "Sunday", "Monday",.."Saturday" as the values. months, which uses the numbers 1-12 as the keys and "January", "February", ... "December" as the values. Asked the user to enter a day (1-31), a month (1-12), a year, and a day of the week (1-7).You could assume the user entered valid numbers. Using the dictionaries, printed the date in the form "Monday, October 12,2020" Modify this program so that there is a function for each required input, that will test that the user has entered a valid number. The function getting the month should accept any number between 1 and 12. The function getting the day of the week should accept any number between 1 and 7. The function getting the day of the month should test that the day is valid for a given month (pass the month to the function). For example, if month==4(April),31 would not be accepted. The function asking for the year should test for a reasonable range of years (e.g.1900-2100, or any 4-digit number).

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!