gpt4 book ai didi

python - 如何在 Python 中将字符串日期时间转换为时间戳?

转载 作者:太空宇宙 更新时间:2023-11-03 12:41:25 25 4
gpt4 key购买 nike

我想使用 python 将此字符串 datetimestring = 'Fri, 08 Jun 2012 22:40:26 GMT' 转换为时间戳。

我试过了

 timestamp = time.mktime(time.strptime(datetimestring, '%a, %d %B %Y %H:%M:%S GMT'))

但报告正则表达式错误。

最佳答案

您正在使用 %B,它对应于完整的月份名称,但您只有缩写名称。您应该改用 %b:

>>> import time
>>> datetimestring = 'Fri, 08 Jun 2012 22:40:26 GMT'
>>> timestamp = time.mktime(time.strptime(datetimestring, '%a, %d %B %Y %H:%M:%S GMT'))
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/_strptime.py", line 454, in _strptime_time
return _strptime(data_string, format)[0]
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/_strptime.py", line 325, in _strptime
(data_string, format))
ValueError: time data 'Fri, 08 Jun 2012 22:40:26 GMT' does not match format '%a, %d %B %Y %H:%M:%S GMT'
>>> timestamp = time.mktime(time.strptime(datetimestring, '%a, %d %b %Y %H:%M:%S GMT'))
>>> timestamp
1339209626.0

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

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