Python调用time模块设置当前时间-指定时间

Posted 蔡猪猪

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python调用time模块设置当前时间-指定时间相关的知识,希望对你有一定的参考价值。

import datetime
import time
#新建元旦时间
#将程序打包
def A():
# 设定时间
newyear =datetime.datetime(2033,10,1)
#调用当前时间
nowtime=datetime.datetime.now()
#计算时间差
#计算设定的时间减去现在的时间等于多少天
delte =newyear - nowtime
#将算出的天数除于365天,则是剩余年数
year=int(delte.days/365)
#将计算出的天数用%算出余数则是,算除n年多少天
day=int(delte.days%365)
#计算小时
hour=int(delte.seconds/60/60)
#计算分
minute=int((delte.seconds - hour*60*60)/60)
#计算秒
seconds = delte.seconds - hour*60*60 - minute*60
#输出
print("距离 2033年10月1日 剩余:%d年,%d天,%d时,%d分,%d秒" % (year,day, hour, minute, seconds))
#打包设置循环,循环输出剩余时间,sleep(1):美妙循环一次
while True:
time.sleep(1)
A()



























以上是关于Python调用time模块设置当前时间-指定时间的主要内容,如果未能解决你的问题,请参考以下文章

python 常用模块

python3 5月26日 time模块常用时间转换

Python常用模块

Python之Time模块

python模块之time模块

Python之OS模块