将 timedelta 格式化为字符串
在 Python 中,您可以使用 str() 函数将 datetime.timedelta 对象转换为字符串。生成的字符串格式为“hh:mm:ss.frac_seconds”。例如:
import datetime start = datetime.datetime(2009, 2, 10, 14, 00) end = datetime.datetime(2009, 2, 10, 16, 00) delta = end - start str_duration = str(delta) print(str_duration) # prints 2:00:00
还可以使用total_seconds()方法获取timedelta对象中的总秒数。如果您想将持续时间四舍五入到最接近的分钟或小时,这会很有用。例如:
rounded_seconds = round(delta.total_seconds()) rounded_minutes = rounded_seconds // 60 rounded_hours = rounded_minutes // 60
以上是如何将 Python `timedelta` 对象格式化为人类可读的字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!