2021年7月5日

Logging 模块

摘要: Log信息等级划分:日志级别等级CRITICAL > ERROR > WARNING > INFO > DEBUG logging.debug('debug message') logging.info('info message') logging.warning('warning message 阅读全文
posted @ 2021-07-05 16:52 猪小气 阅读(25) 评论(0) 推荐(0) 编辑

shutil 模块,对文件的copy,删除,复制,压缩和解压

摘要: shutil 模块 拷贝文件 \# shutil.copy2('原文件', '现文件') 拷贝目录 # shutil.copytree("原目录", "新目录", ignore=shutil.ignore_patterns("*.pyc")) 删除目录 # shutil.rmtree("temp", 阅读全文
posted @ 2021-07-05 15:37 猪小气 阅读(215) 评论(0) 推荐(0) 编辑