摘要:
日志文件 阅读全文
摘要:
# 时间 哪个文件里面的 第几行代码import loggingfrom logging import handlers# logging.debug('debug级别,最低级别,一般开发人员用来打印一些调试信息')# logging.info('info级别,正常输出信息,一般用来打印一些正常的操 阅读全文
摘要:
# file_to_list import osimport xlrdimport jsonclass DataToParam(object): @classmethod def text(cls, file_name, seq=','): cls.file_exist(file_name) wit 阅读全文
摘要:
# 放线程的一个池子import threadpool def say(num): print(num) res = list(range(101)) pool = threadpool.ThreadPool(10) # 创建一个线程池 reqs = threadpool.makeRequests( 阅读全文