我想知道给定时间是早上还是下午。我不确定这是否是在 python 中创建 Time 对象并进行比较的正确方法。或者,还有更好的方法?
def part_of_day_statistics(x):
if x > time.strptime('6:00 am') and x < time.strptime('11:59 am'):
return 'Morning'
if x > time.strptime('12:00 pm') and x < time.strptime('5:59 pm'):
return 'Afternoon'