1

我想知道给定时间是早上还是下午。我不确定这是否是在 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' 
4

1 回答 1

6

DjangoTimeField条目datetime.time实例,它有一个.hour属性(范围从 0 到 23):

def part_of_day_statistics(x):
    if x.hour >= 6 and x.hour < 12:
        return 'Morning'
    if x.hour >= 12 and x.hour < 18:
        return 'Afternoon'
于 2012-08-04T16:20:05.723 回答