先转换为时间数组,然后转换为其他格式(想缓换成什么格式都可以)
timeArray = time.strptime(value, "%Y-%m-%dT%H:%M:%SZ") otherStyleTime = time.strftime("%Y-%m-%d %H:%M:%S", timeArray)
网上都有,仔细找找
def utc_func(data):
import dateutil.parser
import pytz
import datetime
local_time = dateutil.parser.parse(data).astimezone(pytz.timezone('Asia/Shanghai'))
print local_time, type(local_time)
date = datetime.datetime.strftime(local_time, '%Y-%m-%d %H:%M:%S')
print date
# 1楼 format 格式不对
def utc_func_2(value):
import time
timeArray = time.strptime(value, "%Y-%m-%dT%H:%M:%S.%fZ")
otherStyleTime = time.strftime("%Y-%m-%d %H:%M:%S", timeArray)
print otherStyleTime