Python 中 with open 用法 open() 的几个 mode: ‘r’ ‘w’ ‘a’ ‘r+’ 使用 with 关键词使用 with 可以不用担心 file.close() 问题。其在使用完毕后会自动关闭文件。 123with open('filename', 'mode') as f: data = f.read() print(data) Python Python 中 with open 用法 http://example.com/2022/08/27/Python-中-with-open-用法/ 作者 Jie 发布于 2022年8月27日 许可协议 Python 3 连接 PostgreSQL 数据库 上一篇 Python 编程从认知到实践 下一篇 Please enable JavaScript to view the comments