time.gmtime()实现时间戳转格式化时间

date_struct = time.gmtime(int(each['modifyDate']) / 1000 + 28800)

format_date = str(date_struct.tm_year) + u"年" + str(date_struct.tm_mon) + u"月" + str(

date_struct.tm_mday) + u"日"

你可能感兴趣的:(time.gmtime()实现时间戳转格式化时间)