gpt4 book ai didi

python - 在python中将日期时间转换为时间

转载 作者:行者123 更新时间:2023-11-28 21:40:44 25 4
gpt4 key购买 nike

我有:

test_date = "2017-07-20-10-30"

然后使用:

day = datetime.strptime(test_date[11:], "%H-%M")

这给了我

1900-01-01 10:30:00

如何获取:10:30:00 作为 datetime.time 类型?

最佳答案

您可以像这样使用 datetime 对象的 strftime 方法:

day.strftime('%H:%M')

更多信息在这里:https://docs.python.org/2/library/datetime.html#strftime-strptime-behavior

好吧,我误会了。使用 day.time() 获取 time 对象。

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

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