Write a program in Python that will store the schedule for a given day for a particular TV station. The program should ask the user for the name of the station and the day of the week before asking for the name of each TV program and the Start and Finish times.
station_name = input('Enter the station name')
dow = input('Enter day of the week')
prog_name = input('Enter name of tv program')
s_prog = input('commencement time of the program ')
e_prog = input('time of end of the program ')
Comments
Leave a comment