如何格式化timedelta进行显示

时间:2012-11-16 02:54:31

标签: python

我的脚本计算2次的差异。像这样:

lasted = datetime.strptime(previous_time, FMT) - datetime.strptime(current_time, FMT)

它返回一个timedelta对象。目前,它给了我几秒钟的差异。

如何将其格式化以便显示?

e.g。将“121”转换为“00:02:01”?

谢谢。

5 个答案:

答案 0 :(得分:21)

您是否尝试过使用str()

>>> a = datetime.now()                 
>>> b = datetime.now() - a
>>> b
datetime.timedelta(0, 6, 793600)
>>> str(b)
'0:00:06.793600'

或者,您可以使用字符串格式:

>>> a = datetime.now()                 
>>> b = datetime.now() - a
>>> s = b.total_seconds()
>>> '{:02}:{:02}:{:02}'.format(s // 3600, s % 3600 // 60, s % 60)
'00:00:06'

答案 1 :(得分:4)

您可以通过创建新的timedelta对象来截断使用str时的秒数

>>> a = datetime.now()
>>> b = datetime.now()
>>> c = b-a
>>> str(c)
'0:00:10.327705'
>>> str(timedelta(seconds=c.seconds))
'0:00:10'

答案 2 :(得分:3)

[在这里插入无耻的自我推销免责声明]

您可以使用https://github.com/frnhr/django_timedeltatemplatefilter

它被打包为Django的tempalte过滤器,所以这里是重要的部分,只是简单的Python:

def format_timedelta(value, time_format="{days} days, {hours2}:{minutes2}:{seconds2}"):

    if hasattr(value, 'seconds'):
        seconds = value.seconds + value.days * 24 * 3600
    else:
        seconds = int(value)

    seconds_total = seconds

    minutes = int(floor(seconds / 60))
    minutes_total = minutes
    seconds -= minutes * 60

    hours = int(floor(minutes / 60))
    hours_total = hours
    minutes -= hours * 60

    days = int(floor(hours / 24))
    days_total = days
    hours -= days * 24

    years = int(floor(days / 365))
    years_total = years
    days -= years * 365

    return time_format.format(**{
        'seconds': seconds,
        'seconds2': str(seconds).zfill(2),
        'minutes': minutes,
        'minutes2': str(minutes).zfill(2),
        'hours': hours,
        'hours2': str(hours).zfill(2),
        'days': days,
        'years': years,
        'seconds_total': seconds_total,
        'minutes_total': minutes_total,
        'hours_total': hours_total,
        'days_total': days_total,
        'years_total': years_total,
    })

没有比这简单得多:)尽管如此,请查看自述文件,了解一些例子。

对于你的例子:

>>> format_timedelta(lasted, '{hours_total}:{minutes2}:{seconds2}')
0:02:01

答案 3 :(得分:1)

希望这可以解决您的问题,

import datetime
start = datetime.datetime(2012,11,16,11,02,59)
end = datetime.datetime(2012,11,20,16,22,53)
delta = end-start
print ':'.join(str(delta).split(':')[:3])

In [29]: import datetime
In [30]: start = datetime.datetime(2012,11,16,11,02,59)
In [31]: end = datetime.datetime(2012,11,20,16,22,53)
In [32]: delta = end-start
In [33]: print ':'.join(str(delta).split(':')[:3])
4 days, 5:19:54

答案 4 :(得分:0)

从时间增量中有时不需要第二小数位。 通过拆分和丢弃来快速截断该小数位:

slashLocation != -1

然后

a = datetime.now()
b = datetime.now() - a

(假设应用程序与您无关紧要)