Python中的UTC秒和时间格式表达式转换

时间:2015-06-23 01:51:42

标签: python time utc seconds

如何将2012-01-01 0:0:0以后的秒序列转换为时间格式表达式。

反过来? 将时间表达式(例如2015-6-23 10:00:00)转换为2012-01-01 0:0:0以来的秒数。

1 个答案:

答案 0 :(得分:1)

import datetime as dt

print (dt.datetime(2015,1,2) - dt.datetime(2015,1,1)).total_seconds()
print dt.datetime(2015,1,1) + dt.timedelta(seconds=3600*24)

输出

http://testedanswers.com/questions/-JsT943k5Y8lTp2dOb3s

Python文档

https://docs.python.org/2/library/datetime.html