标签:import pytho python pre strftime str 单位 odi print
# coding:utf-8
import datetime
utc_time = datetime.datetime.utcnow()
# 北京时间(东八区)
bj_time = (datetime.datetime.utcnow() + datetime.timedelta(hours=8))
# 美国密西根时间(西五区)
us_time = (datetime.datetime.utcnow() - datetime.timedelta(hours=5))
print bj_time.strftime("%Y-%m-%d %H:%M:%S")
print us_time.strftime("%Y-%m-%d %H:%M:%S")
标签:import pytho python pre strftime str 单位 odi print
原文地址:http://www.cnblogs.com/iamjqy/p/7352765.html