Python:date模块
Posted ywxbbbbb
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python:date模块相关的知识,希望对你有一定的参考价值。
datetime.datetime.now()
#获取字符串格式当前时间
dt = datetime.datetime.now() + datetime.timedelta(hours=2)
#当前时间加两小时
datetime.datetime.now() + datetime.timedelta(3)
#当前时间加3天
datetime.datetime.now() + datetime.timedelta(-3)
#当前时间减3天
time = dt.strftime(‘%Y-%m-%d %H:%M:%S‘)
#时间格式化输出
以上是关于Python:date模块的主要内容,如果未能解决你的问题,请参考以下文章