Python学习日记(九)—— 模块二(logging、json&pickle、xml、requests、configparser、shutil、subprocess)...
logging模块用于便捷记录日志且线程安全的模块(便捷的写文件的模块,不允许多个人同时操作文件)1、单文件日志importlogginglogging.basicConfig(filename='log.log',#指定往哪个文件里写format='%(asctime)s-%(name)s-%(levelname)s-%(module)s:%(message)s',datefmt='%Y-%m-