博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python3 - 时间处理与定时任务
阅读量:6594 次
发布时间:2019-06-24

本文共 2980 字,大约阅读时间需要 9 分钟。

1.计算明天和昨天的日期

#! /usr/bin/env python#coding=utf-8# 获取今天、昨天和明天的日期# 引入datetime模块import datetime #计算今天的时间today = datetime.date.today()#计算昨天的时间 yesterday = today - datetime.timedelta(days = 1)#计算明天的时间tomorrow = today + datetime.timedelta(days = 1) #打印这三个时间print(yesterday, today, tomorrow)

2.计算上一个的时间

方法1:

#! /usr/bin/env python#coding=utf-8# 计算上一个的时间#引入datetime,calendar两个模块import datetime,calendar  last_friday = datetime.date.today() oneday = datetime.timedelta(days = 1)     while last_friday.weekday() != calendar.FRIDAY:     last_friday -= oneday     print(last_friday.strftime('%A, %d-%b-%Y'))

方法二:借助模运算寻找上一个星期五

#! /usr/bin/env python#coding=utf-8# 借助模运算,可以一次算出需要减去的天数,计算上一个星期五#同样引入datetime,calendar两个模块import datetime import calendar     today = datetime.date.today() target_day = calendar.FRIDAY this_day = today.weekday() delta_to_target = (this_day - target_day) % 7last_friday = today - datetime.timedelta(days = delta_to_target)     print(last_friday.strftime("%d-%b-%Y"))

3.计算歌曲的总播放时间

#! /usr/bin/env python#coding=utf-8# 获取一个列表中的所有歌曲的播放时间之和 import datetime     def total_timer(times):     td = datetime.timedelta(0)     duration = sum([datetime.timedelta(minutes = m, seconds = s) for m, s in times], td)     return duration     times1 = [(2, 36),           (3, 35),           (3, 45),           ] times2 = [(3, 0),           (5, 13),           (4, 12),           (1, 10),           ]     assert total_timer(times1) == datetime.timedelta(0, 596) assert total_timer(times2) == datetime.timedelta(0, 815)     print("Tests passed.\n"      "First test total: %s\n"      "Second test total: %s" % (total_timer(times1), total_timer(times2)))

4.反复执行某个命令

#! /usr/bin/env python#coding=utf-8# 以需要的时间间隔执行某个命令     import time, os     def re_exe(cmd, inc = 60):     while True:         os.system(cmd);         time.sleep(inc)     re_exe("echo %time%", 5)

5.定时任务

#! /usr/bin/env python#coding=utf-8#这里需要引入三个模块import time, os, sched     # 第一个参数确定任务的时间,返回从某个特定的时间到现在经历的秒数 # 第二个参数以某种人为的方式衡量时间 schedule = sched.scheduler(time.time, time.sleep)     def perform_command(cmd, inc):     os.system(cmd)         def timming_exe(cmd, inc = 60):     # enter用来安排某事件的发生时间,从现在起第n秒开始启动     schedule.enter(inc, 0, perform_command, (cmd, inc))     # 持续运行,直到计划时间队列变成空为止     schedule.run()             print("show time after 10 seconds:") timming_exe("echo %time%", 10)

6.利用sched实现周期调用

#! /usr/bin/env python#coding=utf-8import time, os, sched     # 第一个参数确定任务的时间,返回从某个特定的时间到现在经历的秒数 # 第二个参数以某种人为的方式衡量时间 schedule = sched.scheduler(time.time, time.sleep)     def perform_command(cmd, inc):     # 安排inc秒后再次运行自己,即周期运行     schedule.enter(inc, 0, perform_command, (cmd, inc))     os.system(cmd)         def timming_exe(cmd, inc = 60):     # enter用来安排某事件的发生时间,从现在起第n秒开始启动     schedule.enter(inc, 0, perform_command, (cmd, inc))     # 持续运行,直到计划时间队列变成空为止     schedule.run()             print("show time after 10 seconds:") timming_exe("echo %time%", 10)

  

 

 

转载于:https://www.cnblogs.com/alan-babyblog/p/5165579.html

你可能感兴趣的文章
Azure AD Connect 手动同步
查看>>
day25 初始面向对象
查看>>
const与readonly
查看>>
史上最强超融合入门干货:超融合与传统架构特性及收益详细对比
查看>>
猜数字游戏代码
查看>>
常用sql语句总结2(conver()函数对日期的格式化)
查看>>
jenkins持续集成文件冲突的问题
查看>>
Python3入门与进阶【笔记】
查看>>
set容器查找操作使用
查看>>
UGUI组件之 Anchors 锚点定位(九宫定位 and 弹性定位)简单笔记
查看>>
Uva 1625,颜色的长度
查看>>
51nod 1215 数组的宽度
查看>>
UOJ 35 后缀数组
查看>>
Oracle
查看>>
10大经典算法
查看>>
android 屏幕旋转180度
查看>>
【文文殿下】CF1098C Construct a tree 题解
查看>>
大小端问题解析
查看>>
ios-表视图-demo7-cell的编辑
查看>>
BLE获取iphone mac地址的方法--【原创】
查看>>