摘要: 1 pathlib 1.1 遍历创建文件夹 比如下面实例,t文件夹就不存在,则会递归创建t/tt/ttt from pathlib import Path a = Path("/home/t/tt/ttt") a.mkdir(parents=True, exist_ok=True) 2 locals 阅读全文
posted @ 2022-04-07 22:59 哈哈哈喽喽喽 阅读(25) 评论(0) 推荐(0)