gpt4 book ai didi

python - 如何在python中将带有z的unix时间戳转换为日期时间

转载 作者:行者123 更新时间:2023-12-01 05:09:41 26 4
gpt4 key购买 nike

如何在 python 中将此时间戳“20141031131429Z”转换为 2014 年 10 月 31 日

>>>datetime.datetime.strptime( "20141031131429Z", "%Y%m%d%H%M%S%Z" )

上面的代码给了我一个错误,如下所示:

ValueError: time data '20141031131429Z' does not match format '%Y%m%d%H%M%S%Z'

最佳答案

删除Z前面的%:

d = datetime.datetime.strptime("20141031131429Z", "%Y%m%d%H%M%SZ" )
print(d.strftime("%d %B %Y"))

输出:

31 October 2014

设置 strftime() and strptime() behavior 的文档.

关于python - 如何在python中将带有z的unix时间戳转换为日期时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24427821/

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