21

我有两个日期,可以像往常一样计算 timedelta。

但我想用产生的时间增量计算一些百分比:

full_time = (100/percentage) * timdelta

但它似乎只能与 interegs 相乘。

我怎样才能使用float而不是int乘数?

例子:

percentage     = 43.27
passed_time    = fromtimestamp(fileinfo.st_mtime) - fromtimestamp(fileinfo.st_ctime)
multiplier     = 100 / percentage   # 2.3110700254217702796394730760342
full_time      = multiplier * passed_time # BUG: here comes exception
estimated_time = full_time - passed_time

如果使用int(multiplier)- 准确性会受到影响。

4

2 回答 2

28

您可以转换为总秒数并再次返回:

full_time = timedelta(seconds=multiplier * passed_time.total_seconds())

timedelta.total_seconds可从 Python 2.7 获得;在早期版本中使用

def timedelta_total_seconds(td):
    return (td.microseconds + (td.seconds + td.days * 24 * 3600) * 10**6) / float(10**6)
于 2012-09-05T09:37:51.660 回答
3

你可以使用total_seconds()

datetime.timedelta(seconds=datetime.timedelta(minutes=42).total_seconds() * 0.8)
# => datetime.timedelta(0, 2016)
于 2012-09-05T09:37:39.990 回答