【python】时间与时间戳互相转换 时间与时间戳格式的互相转换


时间戳 : <class ‘float’>,1683876941.119018
时间格式: <class ‘str’>,“2023-05-12 15:35:41.119018”
时间戳 (timestamp):定义为从格林威治时间1970年01月01日08时00分00秒起至现在的总秒数。

一、时间戳转换为时间

1.0 获取时间戳

>>> import time
>>> timestamp = time.time()
>>> timestamp
1688548167.190377

以毫秒计时的时间戳一般有 13 位,可以将其除以 1000:

timestamp13 = 1688548167190
timestamp = timestamp13 / 1000

1.1 datetime 法

使用 datetime 库,将时间戳转换为时间:

# 1688548167.190377 -> "2023-07-05 17:09:27.190377"
import datetime as dt
def timestamp_to_timestr(timestamp):
 # return dt.datetime.fromtimestamp(timestamp).strftime("%Y-%m-%d %H:%M:%S.%f")
 return dt.datetime.fromtimestamp(timestamp)
print(timestamp_to_timestr(timestamp)) 
2023-07-05 17:09:27.190377

1.2 time 法

也可以只用 time 库进行转换:

# 1688548167190 -> 2023-07-05 17:09:27
def timestamp_to_timestr(timestamp):
 tre_timeArray = time.localtime(timestamp)
 return time.strftime("%Y-%m-%d %H:%M:%S", tre_timeArray)
print(timestamp_to_timestr(timestamp))
2023-07-05 17:09:27

二、时间转化为时间戳

首先,获得对应的时间:

timestr = "2023-07-05 17:09:27.190377"

然后,编写转化为时间戳的函数,转化只用到 time 库:

def timestr_to_timestamp(timestr):
 timestr1, timestr2 = timestr.split('.')
 struct_time = time.strptime(timestr1, '%Y-%m-%d %H:%M:%S')
 seconds = time.mktime(struct_time)
 millseconds = float("0." + timestr2)
 return seconds + millseconds
print(timestr_to_timestamp(timestr))
# 1688548167.190377

要获得以毫秒计时的时间戳,只需要把 return 值改为 int((seconds + millseconds) * 1000) 即可!

作者:今夕晚风依旧原文地址:https://blog.csdn.net/weixin_44844635/article/details/131559450

%s 个评论

要回复文章请先登录注册