python 使用python datetime来查看明年的当前时间和时间

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用python datetime来查看明年的当前时间和时间相关的知识,希望对你有一定的参考价值。

from datetime import timedelta, datetime

# current time
now = datetime.now()
print now

# a year from now
next_year = (datetime.today()+ timedelta(days=365))
print next_year

以上是关于python 使用python datetime来查看明年的当前时间和时间的主要内容,如果未能解决你的问题,请参考以下文章

python每天时间段设置

python中如何把datetime.datetime转换成datetime.time?

python 如何将字符串转化为datetime.date

Python标准库datetime之time模块详解

datetime怎么改

python 字符串转变时间