使用日期时间的 strptime 从字符串构造 Timedelta 对象
在 Python 中,将基于时间的字符串转换为 timedelta 对象是一项常见任务。格式可能会有所不同,从小时、分钟到秒不等。
datetime.strptime:一个强大的字符串解析解决方案
datetime 的不是求助于外部库或手动解析,而是strptime 提供了一个多功能且优雅的解决方案。它支持使用指定格式进行精确的字符串解释。
考虑以下代码片段:
<code class="python">from datetime import datetime, timedelta # Define the input string and format t = datetime.strptime("05:20:25", "%H:%M:%S") # Extract time components using properties hours, minutes, seconds = t.hour, t.minute, t.second # Create a timedelta object using extracted values delta = timedelta(hours=hours, minutes=minutes, seconds=seconds)</code>
执行此代码后,您将获得一个准确表示输入字符串的 timedelta 对象。您可以根据需要利用其各种方法来执行进一步的操作。
以上是如何在Python中使用datetime.strptime将时间字符串转换为Timedelta对象?的详细内容。更多信息请关注PHP中文网其他相关文章!