摘要:
问题:现有一个文本文件evt_num.txt,文件内容如下: 1999-7-15 1 1999-8-15 1 1999-9-15 5 1999-10-15 4 1999-11-15 3 1999-12-15 0 需求:将文件增加一列,第3列内容为第2列内容的累加值,即c3[0]= 1,c3[1]=2 阅读全文
摘要:
import threading,time class Boss(threading.Thread): def run(self): print("We must work today!") event.isSet() or event.set() time.sleep(5) print("You 阅读全文
摘要:
python中的信号量,是通过定义semaphore对象,控制同时可以运行的线程的数量,同时也是一种锁,下面的代码演示了信号量的应用 import threading,time class MyThread(threading.Thread): def __init__(self,name): th 阅读全文