摘要:
1 import contextlib #导入模块1 2 @contextlib.contextmanager#装饰器2 3 def myopen(f1,f2): 4 ff = open(f1,f2,encoding='utf-8') 5 try: 6 yield ff#碰到yield,把ff传给w 阅读全文
摘要:
基于简单版创建类对象过多,现自定义高级版python线程池,代码如下 1 #高级线程池 2 import queue 3 import threading 4 import time 5 StopEvent = object() #全局变量当作取任务时的停止标志只要不是元组就可以 6 class T 阅读全文