我有两个日期,可以像往常一样计算 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)
- 准确性会受到影响。