page contents

Python中打开文件可以自动关闭的关键字是什么?

轩辕小不懂 发布于 2022-05-04 15:01
阅读 427
收藏 0
分类:Python开发
3519
Nen
Nen
- 程序员

#使用with

with open("d:\\test.txt",'r') as f:

print f.readlines()

请先 登录 后评论