无论哪种编程语言,时间必定都长短常重要的部门,本日来看一下python如何来处理惩罚时间和python按时任务,留意咯:本篇所讲是python3版本的实现,在python2版本中的实现略有差异,有时间会再写一篇以便各人区分。
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.计较上一个的时间
要领一:
#! /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) % 7
last_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-8
import 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)
