我在下面有这个功能,它可以帮助我将日期格式从一个更改为另一个:
def change_time_format(self, date_string, input_format, output_format):
if date_string == None:
return None
try:
date = datetime.datetime.strptime(date_string, input_format)
timestamp = calendar.timegm(date.timetuple())
new_formatted_date = datetime.datetime.fromtimestamp(timestamp).strftime(output_format)
return new_formatted_date
except Exception as E:
print E
return None
当我这样称呼它时:
dtu.change_time_format('2017-01-01 12:34:56', '%Y-%m-%d %H:%M:%S', '%d%m%Y %H%M%S')
我得到的输入为:'01012017 153456'这是错误的,需要:'01012017 123456',由于某种原因有3小时的差异。
我找不到如何修复它,我在网上搜索了几种方法,我找不到任何东西。
答案 0 :(得分:1)
来自here:
return datetime.datetime.strptime(date_string, input_format).strftime(output_format)