一、將字串轉換為時間戳
#-*- coding: utf-8 -*-
__author__ = 'sky'
import time
tm = "2013-10-10 23:40:00"
#將其轉換為時間陣列
timearray = time.strptime(tm, "%y-%m-%d %h:%m:%s")
#轉換為時間戳:
timestamp = int(time.mktime(timearray))
print timestamp
輸出結果: 1381419600
二、字串格式的更改
如:把"2013-10-10 23:40:00",改為"2013/10/10 23:40:00"
#-*- coding: utf-8 -*-
__author__ = 'sky'
import time
# 先轉換為時間陣列,然後轉換為其他格式
tm = "2013-10-10 23:40:00"
timearray = time.strptime(tm, "%y-%m-%d %h:%m:%s")
otherstyletime = time.strftime("%y/%m/%d %h:%m:%s", timearray)
print otherstyletime
輸出結果: 2013/10/10 23:40:00
三、時間戳轉換為指定格式日期
方法一:
#-*- coding: utf-8 -*-
__author__ = 'sky'
import time
timestamp = 1381419600
timearray = time.localtime(timestamp)
otherstyletime = time.strftime("%y-%m-%d %h:%m:%s", timearray)
print otherstyletime
輸出結果:2013-10-10 23:40:00
方法二:
#-*- coding: utf-8 -*-
__author__ = 'sky'
import time
import datetime
timestamp = 1381419600
datearray = datetime.datetime.utcfromtimestamp(timestamp)
otherstyletime = datearray.strftime("%y-%m-%d %h:%m:%s")
print otherstyletime
輸出結果:2013-10-10 15:40:00
四、獲取當前時間並轉換為指定日期格式
方法一:
#-*- coding: utf-8 -*-
__author__ = 'sky'
import time
#獲得當前時間時間戳
now = int(time.time())
#轉換為其他日期格式,如:"%y-%m-%d %h:%m:%s"
timearray = time.localtime(now)
otherstyletime = time.strftime("%y-%m-%d %h:%m:%s", timearray)
print otherstyletime
輸出結果:2016-03-06 19:16:26
方法二:
#-*- coding: utf-8 -*-
__author__ = 'sky'
import time
import datetime
#獲得當前時間
now = datetime.datetime.now() #時間陣列格式
#轉換為指定的格式:
otherstyletime = now.strftime("%y-%m-%d %h:%m:%s")
print otherstyletime
輸出結果:2016-03-06 19:19:41
五、獲得三天前的時間
#-*- coding: utf-8 -*-
__author__ = 'sky'
import time
import datetime
#先獲得時間陣列格式的日期
threedayago = (datetime.datetime.now() - datetime.timedelta(days = 3))
#轉換為時間戳:
timestamp = int(time.mktime(threedayago.timetuple()))
#轉換為其他字串格式:
otherstyletime = threedayago.strftime("%y-%m-%d %h:%m:%s")
print otherstyletime
輸出結果:2016-03-03 19:22:33
注:timedelta()的引數有:days,hours,seconds,microseconds
六、給定時間戳,計算該時間的幾天前時間
#-*- coding: utf-8 -*-
__author__ = 'sky'
import time
import datetime
timestamp = 1381419600
#先轉換為datetime
datearray = datetime.datetime.utcfromtimestamp(timestamp)
threedayago = datearray - datetime.timedelta(days = 3)
print threedayago
輸出結果:2013-10-07 15:40:00 python中時間 日期 時間戳的轉換
在編寫 時,往往涉及時間 日期 時間戳的相互轉換。引入模組 import time,datetime 字元型別的時間 tss1 2013 10 10 23 40 00 轉為時間陣列 timearray time.strptime tss1,y m d h m s print timearray ti...
python中時間 日期 時間戳的轉換
1 簡介 在編寫測試指令碼中,因涉及時間 日期 時間戳的相互轉換。2 引入模組 1 引入模組 2import time,datetime 2.1 str型別的日期轉換為時間戳 1 字元型別的時間 2 tss1 2020 01 10 23 40 00 3 轉為時間陣列 4 timearray time...
Python時間,日期,時間戳之間轉換
1.將字串的時間轉換為時間戳 方法 a 2013 10 10 23 40 00 將其轉換為時間陣列 importtime timearray time.strptime a,y m d h m s 轉換為時間戳 timestamp int time.mktime timearray timestam...