摘要: 1 # -*- coding: utf-8 -*- 3 """ 4 定时器方法 5 """ 6 import threading 7 import time 8 9 10 class Timer(threading.Thread):11 def __init__(self, fn, ar... 阅读全文
posted @ 2015-07-02 13:24 爱在夕阳下 阅读(322) 评论(0) 推荐(0) 编辑
摘要: 1 # -*- coding: utf-8 -*- 2 3 from time import clock 4 import numpy as np 5 from math import sin 6 7 t = [i * 0.0001 for i in range(10000000)] 8 st... 阅读全文
posted @ 2015-07-02 13:20 爱在夕阳下 阅读(1400) 评论(0) 推荐(0) 编辑