python中的時間轉換

Python中的時間相關庫有:
datetimetimepython

主要形式有:.net

  • datetime
  • timestamp

相互轉換:code

timestamp->datetime: dt = datetime.datetime.utcfromtimestamp(timestamp)
datetime->timestamp:htm

dt=datetime.datetime(2016, 9, 26, 7, 4, 32, 20593)
t=dt.timetuple()  
timeStamp = int(time.mktime(t))

時間或日期的格式問題,能夠使用strftimeblog

涉及到時區等問題,參考:get

  1. python timestamp和datetime之間的轉換:http://blog.csdn.net/xxm524/article/details/48055275
  2. Python中實現對Timestamp和Datetime及UTC時間之間的轉換: http://www.jb51.net/article/63654.htm
相關文章
相關標籤/搜索