玩轉python 時間戳轉換

2021-08-18 02:23:26 字數 2133 閱讀 5816

1.將字串的時間轉換為時間戳

方法:a = "2013-10-10 23:40:00"

將其轉換為時間陣列

importtime

timearray = time.strptime(a, "%y-%m-%d

%h:%m:%s")

轉換為時間戳:

timestamp = int(time.mktime(timearray))

timestamp == 1381419600

2.字串格式更改

如a = "2013-10-10 23:40:00",想改為 a = "2013/10/10 23:40:00"

方法:先轉換為時間陣列,然後轉換為其他格式

timearray = time.strptime(a, "%y-%m-%d

%h:%m:%s")

otherstyletime = time.strftime("%y/%m/%d

%h:%m:%s", timearray)

3.時間戳轉換為指定格式日期:

方法一:

利用localtime()轉換為時間陣列,然後格式化為需要的格式,如

timestamp = 1381419600

timearray = time.localtime(timestamp)

otherstyletime = time.strftime("%y-%m-%d

%h:%m:%s", timearray)

otherstyletime == "2013-10-10 23:40:00"

方法二:

importdatetime

timestamp = 1381419600

datearray = datetime.datetime.utcfromtimestamp(timestamp)

otherstyletime = datearray.strftime("%y-%m-%d

%h:%m:%s")

otherstyletime == "2013-10-10 23:40:00"

4.獲取當前時間並轉換為指定日期格式

方法一:

importtime

獲得當前時間時間戳

now = int(time.time()) ->這是時間戳

轉換為其他日期格式,如:"%y-%m-%d

%h:%m:%s"

timearray = time.localtime(timestamp)

otherstyletime = time.strftime("%y-%m-%d

%h:%m:%s", timearray)

方法二:

importdatetime

獲得當前時間

now = datetime.datetime.now() ->這是時間陣列格式

轉換為指定的格式:

otherstyletime = now.strftime("%y-%m-%d

%h:%m:%s")

5.獲得三天前的時間

方法:importtime

importdatetime

先獲得時間陣列格式的日期

threedayago = (datetime.datetime.now() - datetime.timedelta(days = 3))

轉換為時間戳:

timestamp = int(time.mktime(threedayago.timetuple()))

轉換為其他字串格式:

otherstyletime = threedayago.strftime("%y-%m-%d

%h:%m:%s")

注:timedelta()的引數有:days,hours,seconds,microseconds

timestamp = 1381419600

先轉換為datetime

importdatetime

importtime

datearray = datetime.datetime.utcfromtimestamp(timestamp)

threedayago = datearray - datetime.timedelta(days = 3)

參考5,可以轉換為其他的任意格式了

python 時間 時間戳 轉換

1.簡介 在編寫 時,往往涉及時間 日期 時間戳的相互轉換。python datetime 新增時區 import datetime from dateutil import tz tz sh tz.gettz asia shanghai print datetime.datetime.now tz...

Unix時間戳轉換 python

coding utf 8 import time deftimestamp datetime value format y m d h m s value為傳入的值為時間戳 整形 如 1332888820 value time.localtime value 經過localtime轉換後變成 tim...

Unix時間戳轉換 python

coding utf 8 importtime deftimestamp datetime value format y m d h m s value為傳入的值為時間戳 整形 如 1332888820 value time.localtime value 經過localtime轉換後變成 time...