摘要: Python文件处理 文件读写模式 补充知识: 1.with语法可以一次性打开多个文件 with open(r'123.txt', 'r', encoding='utf8') as f1, open(r'a.txt', 'r', encoding='utf8')as f2: print(f1.rea 阅读全文
posted @ 2022-06-29 22:27 dy12138 阅读(98) 评论(0) 推荐(0)