I've been working on this all day and can't get it done. Any help will be much appreciated! In Python, I want to loop through 3 times asking the user to enter 1 or more days of the week (e.g., Please enter the day(s) of the week:) with the input ending up in a list. The resulting data could look like this:
List1 = ['Monday','Wednesday','Friday']
List2 = ['Tuesday','Friday']
List3 = ['Wednesday']
In addition, I want to validate the input so that I know that each entered day is spelled correctly with appropriate capitalization. The only valid entries are Monday, Tuesday, Wednesday, Thursday, Friday, Saturday, Sunday.
Suggestions??? Thanks!!!