将 Python 字符串转换为日期

发布于 2024-12-01 22:19:16 字数 145 浏览 0 评论 0原文

我需要将Python字符串“Mon Aug 29 2011 18:30:00 GMT+0530 (IST)”转换为“20110829T183000Z”和“20110829T173000Z”(日期+1小时)。

从来不擅长记住日期时间 API,非常感谢这里的帮助!

I need to convert the Python string "Mon Aug 29 2011 18:30:00 GMT+0530 (IST)" into "20110829T183000Z" and "20110829T173000Z" (Date + 1 hour).

Never have been good at remembering datetime APIs, would appreciate the help here!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

似梦非梦 2024-12-08 22:19:16

谷歌一下。提高你的谷歌技能总是比偷懒好。

http://docs.python.org/library/datetime。 html#datetime.datetime.strptime

classmethod datetime.strptime(date_string, format)

返回与date_string相对应的日期时间,根据格式进行解析。
这相当于 datetime(*(time.strptime(date_string, format)[0:6]))
如果 date_stringformat 无法解析,则会引发 ValueError
time.strptime() 或者它返回的值不是时间元组。
请参阅 strftime()strptime() 行为部分。

google it. increasing your google skills is always better than being lazy.

http://docs.python.org/library/datetime.html#datetime.datetime.strptime

classmethod datetime.strptime(date_string, format)

Return a datetime corresponding to date_string, parsed according to format.
This is equivalent to datetime(*(time.strptime(date_string, format)[0:6])).
ValueError is raised if the date_string and format can’t be parsed by
time.strptime() or if it returns a value which isn’t a time tuple.
See section strftime() and strptime() Behavior.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文