📜  如何在 pytion 中写入输出文件 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:03.088000             🧑  作者: Mango

代码示例3
>>> with open('workfile') as f:
...     read_data = f.read()

>>> # We can check that the file has been automatically closed.
>>> f.closed
True