gpt4 book ai didi

python - 如何在python中将字符串转换为没有时间的日期

转载 作者:太空宇宙 更新时间:2023-11-03 13:00:06 25 4
gpt4 key购买 nike

我像这样将字符串转换为日期:

date=request.GET.get('date','')
if date:
date = datetime.strptime(date, "%m/%d/%Y")
print date

这打印:

2014-08-08 00:00:00

如何获取没有 00:00:00 时间的日期?

最佳答案

您有一个“日期时间”对象,因此是时间部分。

正如@jonrsharpe 在他的评论中提到的那样

print date.date()(以ISO格式输出)

打印日期.strftime('%d/%m/%Y')

以您给定的输入格式。

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

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