📜  python 打印文件 - Python 代码示例

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

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

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