欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python字符串格式时间转化为时间戳

程序员文章站 2022-05-02 14:03:15
...

1、问题:

在服务请求记录时间时,往往是毫秒级的,在秒上计数会有小数点,例如

dt= '2020-09-09 15:03:56.742'

 time.strptime支持的几种数字类型如下;

python字符串格式时间转化为时间戳

decimal鄙人觉得应该支持浮点数;尝试format_string="%Y-%m-%d %H:%M:%S" 直接解析,无奈报错了;时间转化代码如下

import time
#将时间字符串转换为10位时间戳,时间字符串默认为2017-10-01 13:37:04格式
def date_to_timestamp(date, format_string="%Y-%m-%d %H:%M:%S"):
    time_array = time.strptime(date, format_string)
    time_stamp = int(time.mktime(time_array))
    return time_stamp

2、报错:

使用上面的一段代码进行转化时,报如下错误

ValueError: unconverted data remains: .742

 

3、解决:

最主要的的原因是小数点后面的位数无法解析了,将

format_string="%Y-%m-%d %H:%M:%S" 变为如下格式

format_string="%Y-%m-%d %H:%M:%S.%f"

即可解决

import time
#将时间字符串转换为10位时间戳,时间字符串默认为2017-10-01 13:37:04格式
def date_to_timestamp(date, format_string="%Y-%m-%d %H:%M:%S.%f"):
    time_array = time.strptime(date, format_string)
    time_stamp = int(time.mktime(time_array))
    return time_stamp

 

参考

https://blog.csdn.net/mighty13/article/details/78147357 (非毫秒级时间转化)

https://blog.csdn.net/woddle/article/details/97389197?utm_medium=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param&depth_1-utm_source=distribute.pc_relevant.none-task-blog-BlogCommendFromMachineLearnPai2-1.channel_param (13位的时间转化)

相关标签: python入门 python