计算时间差
Posted selid
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了计算时间差相关的知识,希望对你有一定的参考价值。
rec2=time.mktime(time.strptime(‘2019.1.3 11:37:50‘,‘%Y.%m.%d %H:%M:%S‘)) rec1=time.mktime(time.strptime(‘2018.1.2 19:37:50‘,‘%Y.%m.%d %H:%M:%S‘)) rec=rec2-rec1 print(rec) time.localtime(rec) print(time.strftime(‘%H:%M:%S‘,time.gmtime(rec))) s=time.gmtime(rec) print(‘过去了%d年%d月%d日%d时%d分%d秒‘%(s.tm_year-1970,s.tm_mon-1,s.tm_mday,s.tm_hour,s.tm_min,s.tm_sec))
以上是关于计算时间差的主要内容,如果未能解决你的问题,请参考以下文章
Vue3官网-高级指南(十七)响应式计算`computed`和侦听`watchEffect`(onTrackonTriggeronInvalidate副作用的刷新时机`watch` pre)(代码片段