I have a list of strings as follows:
4:00-5:00PM
11:00-2:00PM
12:00-1:00PM
11:00-1:00AM
and I'm trying to find an effective way to create two time objects (I suppose this is the only way to keep track of a range of time, which I will later combine with a date object). It is clear to humans what we mean we say 11:00-1:00AM, but wondering what's an effective way to convert this to:
datetime.time(23, 0)
datetime.time(1, 0)
My current approach is to take the first time, and create a PM and AM version, take the timedelta with the end time (which is specified), and take the shorter of the two differences to be the correct one.
