My last post was about creating a list of times to choose in an appointment-type app. In that app I also have a list of the days of the week. day_names = [
'Monday',
'Tuesday',
'Wednesday',
'Thursday',
'Friday',
'Saturday',
'Sunday',
] And, as in my previous post, I wanted to…