python中的str到时间
time1 = "2010-04-20 10:07:30"
time2 = "2010-04-21 10:07:30"
如何将上面的字符串转换为时间戳?
我需要减去上面的时间戳time2-time1
。
time1 = "2010-04-20 10:07:30"
time2 = "2010-04-21 10:07:30"
How to convert the above from string to time stamp?
I need to subtract the above timestamps time2-time1
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
对于 Python 2.5+
编辑: 对于 Python 2.4
For Python 2.5+
Edit: for Python 2.4
如果你像我一样被困在 Python 2.4 系统上:
否则 datetime.strptime() 会工作得很好。
If you're stuck on Python 2.4 system like me:
Otherwise datetime.strptime() will work just fine.