整理總結一下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
C 獲取系統時間及時間格式
datetime 數字型 system.datetime currenttime new system.datetime 取當前年月日時分秒 currenttime system.datetime.now 取當前年 int 年 currenttime.year 取當前月 int 月 currentt...
C 獲取系統時間及時間格式
datetime 數字型 system.datetime currenttime new system.datetime 取當前年月日時分秒 currenttime system.datetime.now 取當前年 int 年 currenttime.year 取當前月 int 月 currentt...
C 獲取系統時間及時間格式
datetime 數字型 system.datetime currenttime new system.datetime 取當前年月日時分秒 currenttime system.datetime.now 取當前年 int 年 currenttime.year 取當前月 int 月 currentt...