Python時間,日期,時間戳之間轉換

2021-07-30 20:08:33 字數 1863 閱讀 5178

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

Python時間,日期,時間戳之間轉換

方法 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....

Python時間,日期,時間戳之間轉換

方法 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 如a...

Python時間 日期 時間戳之間的轉換

一 字串與為時間字串之間的互相轉換 方法 time模組下的strptime方法 a 2012 11 11 23 40 00 字串轉換為時間字串 import time timearray time.strptime a,y m d h m s 時間字串轉換為字串 b time.strftime y ...