摘要: import datetime, multiprocessing, logging, time, threading from concurrent import futures FORMAT = '%(asctime)-9s [%(processName)-10s %(process)6d] %( 阅读全文
posted @ 2022-02-25 23:52 ascertain 阅读(49) 评论(0) 推荐(0) 编辑
摘要: import threading, time, logging, random, datetime, multiprocessing FORMAT = '%(asctime)-15s %(process)d %(lineno)-3s [%(threadName)-11s %(thread)6d] % 阅读全文
posted @ 2022-02-25 22:37 ascertain 阅读(61) 评论(0) 推荐(0) 编辑
摘要: import time, logging, typing, threading, random, datetime FORMAT = '{asctime} {levelname} {process} {processName} {threadName} {thread} {lineno}> {mes 阅读全文
posted @ 2022-02-25 21:49 ascertain 阅读(89) 评论(0) 推荐(0) 编辑
摘要: import time, logging, typing, threading, random, datetime FORMAT = '{asctime} {levelname} {process} {processName} {threadName} {thread} {message}' log 阅读全文
posted @ 2022-02-25 19:31 ascertain 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 消费速度 > 生产速度 import threading, time, logging, random FORMAT = '%(asctime)-15s [%(threadName)-11s %(thread)6d] %(message)s' logging.basicConfig(format=F 阅读全文
posted @ 2022-02-25 15:52 ascertain 阅读(160) 评论(0) 推荐(0) 编辑
摘要: import threading, logging logging.basicConfig(format='%(asctime)-15s [%(threadName)s %(thread)d] %(message)s', level=logging.INFO, datefmt='%F %T') de 阅读全文
posted @ 2022-02-25 12:41 ascertain 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 从上述报错,可知int类参数必须是 str, bytes, bytearray, int, float 五种类型 int() 可接受两个参数 base默认是10进制 无参 -> zero 第一参数为 number类型 TypeError 不能带明确的base, 即base就是默认10进制 可将flo 阅读全文
posted @ 2022-02-25 11:23 ascertain 阅读(1009) 评论(0) 推荐(0) 编辑