复制代码 代码如下:
import time
a = "2011-09-28 10:00:00"
time.strptime(a,'%Y-%m-%d %H:%M:%S')
time.struct_time(tm_year=2011, tm_mon=9, tm_mday=27, tm_hour=10, tm_min=50, tm_sec=0, tm_wday=1, tm_yday=270, tm_isdst=-1)
time.mktime(time.strptime(a,'%Y-%m-%d %H:%M:%S'))
1317091800.0
x = time.localtime(1317091800.0)
time.strftime('%Y-%m-%d %H:%M:%S',x)
2011-09-27 10:50:00
Copyright© 2013-2020
All Rights Reserved 京ICP备2023019179号-8