1. 程式人生 > >python轉換日誌中的時間格式

python轉換日誌中的時間格式

#!/usr/bin/env python# -*- coding: utf-8 -*-import timedef test():    ordinal = 'Tue Jun  4 23:30:03.845 2013'    time_jieshu = time.strptime(ordinal, '%a %b  %d %H:%M:%S.%f %Y')    time_jieshu = int(time.mktime(time_jieshu))    print time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time_jieshu))