python定时执行指定函数的方法

作者:依山带水 时间:2021-04-09 03:20:14 

本文实例讲述了python定时执行指定函数的方法。分享给大家供大家参考。具体实现方法如下:


# time a function using time.time() and the a @ function decorator
# tested with Python24  vegaseat  21aug2005
import time
def print_timing(func):
 def wrapper(*arg):
   t1 = time.time()
   res = func(*arg)
   t2 = time.time()
   print '%s took %0.3f ms' % (func.func_name, (t2-t1)*1000.0)
   return res
 return wrapper
# declare the @ decorator just before the function, invokes print_timing()
@print_timing
def getPrimeList(n):
 """ returns a list of prime numbers from 2 to < n using a sieve algorithm"""
 if n < 2: return []
 if n == 2: return [2]
 # do only odd numbers starting at 3
 s = range(3, n+1, 2)
 # n**0.5 may be slightly faster than math.sqrt(n)
 mroot = n ** 0.5
 half = len(s)
 i = 0
 m = 3
 while m <= mroot:
   if s[i]:
     j = (m*m-3)//2
     s[j] = 0
     while j < half:
       s[j] = 0
       j += m
   i = i+1
   m = 2*i+3
 return [2]+[x for x in s if x]
if __name__ == "__main__":
 print "prime numbers from 2 to <10,000,000 using a sieve algorithm"
 primeList = getPrimeList(10000000)
 time.sleep(2.5)
"""
my output -->
prime numbers from 2 to <10,000,000 using a sieve algorithm
getPrimeList took 4750.000 ms
"""

希望本文所述对大家的Python程序设计有所帮助。

标签:python,定时,执行
0
投稿

猜你喜欢

  • python登陆asp网站页面的实现代码

    2021-01-20 00:03:31
  • php注册登录系统简化版

    2024-04-30 08:48:24
  • JavaScript实现获取select下拉框中第一个值的方法

    2024-04-22 12:50:05
  • 基本的页面设计元素布局比例

    2007-12-15 09:43:00
  • Python实现的百度站长自动URL提交小工具

    2023-08-24 10:36:31
  • pyinstaller打包找不到文件的问题解决

    2022-03-28 06:21:01
  • Python序列化模块之pickle与json详解

    2023-07-08 05:48:23
  • python 读取dicom文件,生成info.txt和raw文件的方法

    2021-06-26 14:45:50
  • python+selenium 实现扫码免密登录示例代码

    2021-02-03 06:41:57
  • python使用多线程备份数据库的步骤

    2024-01-24 18:27:19
  • python启动办公软件进程(word、excel、ppt、以及wps的et、wps、wpp)

    2022-06-12 23:09:48
  • 基于python实现的百度新歌榜、热歌榜下载器(附代码)

    2022-10-29 10:16:12
  • python实现字符串完美拆分split()的方法

    2023-08-25 13:50:36
  • Go语言init函数详解

    2024-05-11 09:18:31
  • Go 字符串格式化的实例代码详解

    2023-08-05 14:05:30
  • c# 获取数据库中所有表名称的方法

    2024-01-16 18:41:33
  • MySQL 视图,第1349号错误

    2008-05-18 13:04:00
  • Django集成MongoDB实现过程解析

    2022-07-10 03:32:35
  • 用Python展示动态规则法用以解决重叠子问题的示例

    2023-02-09 02:20:36
  • python GUI库图形界面开发之PyQt5信号与槽的高级使用技巧(自定义信号与槽)详解与实例

    2022-02-07 05:22:10
  • asp之家 网络编程 m.aspxhome.com