gpt4 book ai didi

python - 将 Snort 字符串转换为 Python 时间戳

转载 作者:太空宇宙 更新时间:2023-11-03 17:38:10 24 4
gpt4 key购买 nike

我正在使用 Snort,它会生成 MM-DD/时间格式的时间戳,例如:

06/18-19:31:05.688344

我想将其转换为 Python 时间戳,包括当前年份。最Pythonic的方式是什么?

最佳答案

使用datetime模块的 strptime 函数。

>>> import datetime
>>> datetime.datetime.strptime(str(datetime.datetime.now().year) +
... '/' + '06/18-19:31:05.688344', '%Y/%m/%d-%H:%M:%S.%f')
datetime.datetime(2015, 6, 18, 19, 31, 5, 688344)

关于python - 将 Snort 字符串转换为 Python 时间戳,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30928172/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com