gpt4 book ai didi

python - 日期和时间 Python(卡住)

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

我是Python初学者。我有一个关于日期和时间代码的问题:

import datetime
date = datetime.date.today()
print(date.strftime('date is %d%b,%Y'))

现在我想打印我自己选择的日期。我该怎么做?

例如,如果今天的日期是(2016 年 9 月 15 日),而我想打印(1998 年 10 月 23 日),我应该怎么做才能使其正常工作?

最佳答案

你可以这样做:

>>> from datetime import date
>>> date(year=1998, month=10, day=23)
datetime.date(1998, 10, 23)
>>> _.strftime('date is %d %b,%Y')
'date is 23 Oct,1998'

根据datetime.date()文档中,date() 接受年、月和日。

关于python - 日期和时间 Python(卡住),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39499079/

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