📜  将字符串写入文件 python 代码示例

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

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

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