python獲取時間及時間格式轉換
阿新 • • 發佈:2018-12-20
整理總結一下python中最常用的一些時間戳和時間格式的轉換
第一部分:獲取當前時間和10位13位時間戳
import datetime, time
'''獲取當前時間'''
n = datetime.datetime.now()
print(n)
'''獲取10位時間戳'''
now = time.time()
print(int(now))
'''獲取13位時間戳'''
now2 = round(now*1000)
print(now2)
執行結果為:
2018-12-06 11:00:30.258255
1544065230
1544065230258
第二部分:將10位時間戳轉換成各種時間格式
'''將時間戳轉換成指定的時間格式'''
t = time.localtime(int(now))
dt = time.strftime("%Y-%m-%d %H:%M:%S", t)
dt2 = time.strftime("%Y%m%d %H:%M:%S", t)
dt3 = time.strftime("%Y/%m/%d %H:%M:%S", t)
print(dt)
print(dt2)
print(dt3)
執行結果位:
2018-12-06 11:00:30
20181206 11:00:30
2018/12/06 11:00:30
第三部分:將當前時間轉換成各種時間格式
'''隨意設定時間格式''' ndt = n.strftime("%Y--%m--%d %H:%M:%S") ndt2 = n.strftime("%Y%m%d %H:%M:%S") ndt3 = n.strftime("%Y**%m**%d %H:%M:%S") print(ndt) print(ndt2) print(ndt3)
執行結果位:
2018--12--06 11:00:30
20181206 11:00:30
2018**12**06 11:00:30
第四部分:字串和資料格式相互轉換
a = '20111111 15:00:00' '''將字串轉換成datetime型別,只能轉換型別,不能改變時間格式''' b = datetime.datetime.strptime(a, "%Y%m%d %H:%M:%S") print(b) '''轉換成datetime之後可以隨意改變時間格式''' b2 = b.strftime("%Y**%m**%d %H:%M:%S") print(b2) '''將datetime型別轉換成字串''' c1 = b.strftime("%Y%m%d") c2 = b.strftime("%H%M%S") print(c1, c2)
執行結果位:
2011-11-11 15:00:00
2011**11**11 15:00:00
20111111 150000