gpt4 book ai didi

python - Python中字符串的日期时间,最佳猜测字符串格式

转载 作者:IT老高 更新时间:2023-10-28 21:36:43 27 4
gpt4 key购买 nike

从字符串中获取日期时间的函数 datetime.strptime(date_string, format) 需要字符串格式作为第二个参数。有没有办法在不知道确切格式的情况下从字符串构建日期时间,并且让 Python 最好地猜测它?

最佳答案

使用 dateutil图书馆。

我已经在使用 dateutil 作为处理时区不可或缺的库
(见 Convert UTC datetime string to local datetimeHow do I convert local time to UTC in Python?)

我刚刚意识到它支持日期解析:

import dateutil.parser
yourdate = dateutil.parser.parse(datestring)

(另见 How do I translate a ISO 8601 datetime string into a Python datetime object?)

关于python - Python中字符串的日期时间,最佳猜测字符串格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9507648/

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