将时间添加到特定时间戳的 Python 代码是什么?
试图找出 datetime
模块并需要一些帮助。
我有一个看起来像这样的字符串:(
00:03:12,200 --> 00:03:14,316
即小时:分钟:秒,毫秒) 并且需要为每个时间戳添加 10 秒。作为输出:
00:03:22,200 --> 00:03:24,316
执行此操作的 Python 代码是什么?
Trying to figure out datetime
module and need some help.
I've got a string which looks like this:
00:03:12,200 --> 00:03:14,316
(that is hours:minutes:seconds,milliseconds)
and need to add let's say 10 seconds to each timestamp. To have as output:
00:03:22,200 --> 00:03:24,316
What would be the Python code to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要解析时间,请使用 strptime
使用 timedelta
重新转换为字符串
To parse time, use strptime
use timedelta
Reconvert to string
要添加 10 秒,您可以使用以下命令:
要解析上述内容,您可以使用
strptime
:请参阅此处了解更多详细信息:
To add 10 seconds, you can use this:
To parse the above, you can use
strptime
:Take a look here for more details: