gpt4 book ai didi

python - 将日期时间更改为字符串

转载 作者:行者123 更新时间:2023-11-28 16:58:01 24 4
gpt4 key购买 nike

我正在尝试查找两个日期之间的天数并将其输出为字符串。

这是我的

currentDate = datetime.datetime.now()
newDate = currentDate + datetime.timedelta(days=3)
dateDifference = newDate - currentDate
print(dateDifference)

我试过了

print(dateDifference.strftime('%d'))

但这行不通。

我希望输出仅将数字“3”作为字符串说出。

谢谢。

最佳答案

如果你想把日差作为一个字符串,你可以这样做

print(str(dateDifference.days))

关于python - 将日期时间更改为字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56511918/

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