<tfoot id='a2clO'></tfoot>
  • <i id='a2clO'><tr id='a2clO'><dt id='a2clO'><q id='a2clO'><span id='a2clO'><b id='a2clO'><form id='a2clO'><ins id='a2clO'></ins><ul id='a2clO'></ul><sub id='a2clO'></sub></form><legend id='a2clO'></legend><bdo id='a2clO'><pre id='a2clO'><center id='a2clO'></center></pre></bdo></b><th id='a2clO'></th></span></q></dt></tr></i><div id='a2clO'><tfoot id='a2clO'></tfoot><dl id='a2clO'><fieldset id='a2clO'></fieldset></dl></div>

      <legend id='a2clO'><style id='a2clO'><dir id='a2clO'><q id='a2clO'></q></dir></style></legend>

      1. <small id='a2clO'></small><noframes id='a2clO'>

          <bdo id='a2clO'></bdo><ul id='a2clO'></ul>
      2. python单线程实现多个定时器示例

        Python单线程实现多个定时器的示例主要分为两种方式:使用time库和使用sched库。
        <tfoot id='1oL7l'></tfoot>
      3. <small id='1oL7l'></small><noframes id='1oL7l'>

            <i id='1oL7l'><tr id='1oL7l'><dt id='1oL7l'><q id='1oL7l'><span id='1oL7l'><b id='1oL7l'><form id='1oL7l'><ins id='1oL7l'></ins><ul id='1oL7l'></ul><sub id='1oL7l'></sub></form><legend id='1oL7l'></legend><bdo id='1oL7l'><pre id='1oL7l'><center id='1oL7l'></center></pre></bdo></b><th id='1oL7l'></th></span></q></dt></tr></i><div id='1oL7l'><tfoot id='1oL7l'></tfoot><dl id='1oL7l'><fieldset id='1oL7l'></fieldset></dl></div>
              <bdo id='1oL7l'></bdo><ul id='1oL7l'></ul>
            • <legend id='1oL7l'><style id='1oL7l'><dir id='1oL7l'><q id='1oL7l'></q></dir></style></legend>

                    <tbody id='1oL7l'></tbody>

                  Python单线程实现多个定时器的示例主要分为两种方式:使用time库和使用sched库。

                  使用time库实现多个定时器

                  示例一:

                  import time
                  
                  def func1():
                      print("func1 called")
                  
                  def func2():
                      print("func2 called")
                  
                  while True:
                      now = time.strftime("%H:%M:%S", time.localtime())
                      if now == "23:59:59":
                          func1()
                      elif now == "00:00:00":
                          func2()
                      time.sleep(1)
                  

                  此段代码中,我们使用了time库中的strftime函数来获取系统当前时间,然后判断当前时间是否是定时器的触发时间。在示例中,我们设定了两个定时器:一个在23:59:59触发,另一个在00:00:00触发。当时间到达触发时间时,我们执行相应的函数。

                  示例二:

                  import time
                  
                  def func():
                      print("func called")
                      time.sleep(10)
                  
                  start_time = time.time()
                  
                  while True:
                      if time.time() - start_time > 5:
                          func()
                          start_time = time.time()
                  

                  此段代码中,我们同样使用了time库,但这次我们利用time库的time函数以及time计算函数的差值来实现了定时器。代码中,我们定义了一个名为“func”的函数,其中包含了10秒的时间延迟。在while循环中,我们使用time函数获取当前时间,并计算当前时间与开启程序的时间差值是否大于5秒,如果大于5秒,我们执行相应的函数并将时间重置。

                  使用sched库实现多个定时器

                  示例一:

                  import sched
                  import time
                  
                  s = sched.scheduler(time.time, time.sleep)
                  
                  def func1():
                      print("func1 called at", time.strftime("%H:%M:%S", time.localtime()))
                  
                  def func2():
                      print("func2 called at", time.strftime("%H:%M:%S", time.localtime()))
                  
                  s.enterabs(time.mktime(time.strptime("23:59:59", "%H:%M:%S")), 1, func1, ())
                  s.enterabs(time.mktime(time.strptime("00:00:00", "%H:%M:%S")), 1, func2, ())
                  
                  s.run()
                  

                  此段代码中,我们使用了sched库中的scheduler函数来创建了一个调度器。使用enterabs函数我们设定了两个定时器,一个在23:59:59触发,另一个在00:00:00触发,当时间到达触发时间时,我们执行相应的函数。

                  示例二:

                  import sched
                  import time
                  
                  s = sched.scheduler(time.time, time.sleep)
                  
                  def func(sc):
                      print("func called at", time.strftime("%H:%M:%S", time.localtime()))
                      s.enter(5, 1, func, (sc,))
                  
                  s.enter(5, 1, func, (s,))
                  s.run()
                  

                  此段代码同样使用了sched库中的scheduler函数创建了一个调度器,但此次我们使用了enter函数来实现了定时器。代码中,我们定义了一个名为“func”的函数,并使用s.enter函数定时执行。在函数内部,我们打印出当前时间,并使用s.enter函数将函数自身加入调度器中实现了循环调用。

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Python中有三个内置函数eval()、exec()和compile()来执行动态代码。这些函数能够从字符串参数中读取Python代码并在运行时执行该代码。但是,使用这些函数时必须小心,因为它们的不当使用可能会导致安全漏洞。
                  在Python中,下载网络文本数据到本地内存是常见的操作之一。本文将介绍四种常见的下载网络文本数据到本地内存的实现方法,并提供示例说明。
                  来给你详细讲解下Python 二进制字节流数据的读取操作(bytes与bitstring)。
                  Python 3.x 是 Python 2.x 的下一个重大版本,其中有一些值得注意的区别。 Python 3.0中包含了许多不兼容的变化,这意味着在迁移到3.0之前,必须进行代码更改和测试。本文将介绍主要的差异,并给出一些实例来说明不同点。
                  要在终端里显示图片,需要使用一些Python库。其中一种流行的库是Pillow,它有一个子库PIL.Image可以加载和处理图像文件。要在终端中显示图像,可以使用如下的步骤:
                  在Python中,我们可以使用Pillow库来进行图像处理。具体实现两幅图像合成一幅图像的方法如下:

                    <tbody id='Bgsu1'></tbody>
                  <legend id='Bgsu1'><style id='Bgsu1'><dir id='Bgsu1'><q id='Bgsu1'></q></dir></style></legend>

                    <tfoot id='Bgsu1'></tfoot>
                    1. <i id='Bgsu1'><tr id='Bgsu1'><dt id='Bgsu1'><q id='Bgsu1'><span id='Bgsu1'><b id='Bgsu1'><form id='Bgsu1'><ins id='Bgsu1'></ins><ul id='Bgsu1'></ul><sub id='Bgsu1'></sub></form><legend id='Bgsu1'></legend><bdo id='Bgsu1'><pre id='Bgsu1'><center id='Bgsu1'></center></pre></bdo></b><th id='Bgsu1'></th></span></q></dt></tr></i><div id='Bgsu1'><tfoot id='Bgsu1'></tfoot><dl id='Bgsu1'><fieldset id='Bgsu1'></fieldset></dl></div>
                          • <bdo id='Bgsu1'></bdo><ul id='Bgsu1'></ul>

                            <small id='Bgsu1'></small><noframes id='Bgsu1'>