查看: 11825|回复: 8

[Python] Python 常用的一些有关时间的函数(比如定时,你懂的)不....

[复制链接]
  • TA的每日心情

    2015-6-7 09:55
  • 签到天数: 1 天

    [LV.1]初来乍到

    发表于 2015-3-3 18:59:54 | 显示全部楼层 |阅读模式
    本帖最后由 xiaoye 于 2015-9-30 11:24 编辑

    无论哪种编程语言,时间肯定都是非常重要的部分,今天来看一下python如何来处理时间和python定时任务,注意咯:本篇所讲是python3版本的实现,在python2版本中的实现略有不同,有时间会再写一篇以便大家区分。
    1.计算明天和昨天的日期
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    #! /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
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    #! /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'))
    方法二:借助模运算寻找上一个星期五
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    #! /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.计算歌曲的总播放时间
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    #! /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.反复执行某个命令
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    #! /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.定时任务
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    #! /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实现周期调用
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    #! /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)
    回复

    使用道具 举报

  • TA的每日心情

    2019-2-12 22:05
  • 签到天数: 2 天

    [LV.1]初来乍到

    发表于 2015-6-27 23:25:56 | 显示全部楼层
    支持中国红客联盟(ihonker.org)
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    发表于 2015-6-28 13:11:26 | 显示全部楼层
    还是不错的哦,顶了
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    发表于 2015-6-28 14:51:52 | 显示全部楼层
    学习学习技术,加油!
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    发表于 2015-6-28 16:47:12 | 显示全部楼层
    感谢楼主的分享~
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    发表于 2015-6-28 17:04:50 | 显示全部楼层
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    发表于 2015-6-29 01:26:54 | 显示全部楼层
    支持,看起来不错呢!
    回复 支持 反对

    使用道具 举报

    该用户从未签到

    发表于 2015-6-29 13:17:55 | 显示全部楼层
    还是不错的哦,顶了
    回复 支持 反对

    使用道具 举报

  • TA的每日心情
    慵懒
    2016-2-7 12:21
  • 签到天数: 16 天

    [LV.4]偶尔看看III

    发表于 2016-1-5 12:51:37 | 显示全部楼层

    支持,看起来不错呢!
    回复 支持 反对

    使用道具 举报

    您需要登录后才可以回帖 登录 | 注册

    本版积分规则

    指导单位

    江苏省公安厅

    江苏省通信管理局

    浙江省台州刑侦支队

    DEFCON GROUP 86025

    旗下站点

    邮箱系统

    应急响应中心

    红盟安全

    联系我们

    官方QQ群:112851260

    官方邮箱:security#ihonker.org(#改成@)

    官方核心成员

    Archiver|手机版|小黑屋| ( 苏ICP备2021031567号 )

    GMT+8, 2024-5-17 13:42 , Processed in 0.032602 second(s), 14 queries , Gzip On, MemCache On.

    Powered by ihonker.com

    Copyright © 2015-现在.

  • 返回顶部