gpt4 book ai didi

python - 如何转换 datetime.strptime() 奇怪的日期格式(其中包含单词 "of")?

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

当我得到这种日期格式时,是否可以将字符串转换为日期时间对象:

9th of April 2015 03:00

最佳答案

或者:

t = '9th of April 2015 03:00'
prefix = t.split()[0][-2:]
datetime.datetime.strptime(t, '%d{0} of %B %Y %H:%M'.format(prefix))

datetime.datetime(2015, 4, 9, 3, 0)

更新:但是我相信@alecxe 的答案是一般用例中最好的。

关于python - 如何转换 datetime.strptime() 奇怪的日期格式(其中包含单词 "of")?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29522341/

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